Download this file

41 lines (35 with data), 1.2 kB

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
# UV doesn't seem to pick up on changes to requirements.txt files as a signal that it needs to re-lock a project's
# dependencies. We should probably just move to listing requirements in these pyproject.toml files directly, and also
# now include bionemo-* sub-packages explicitly.
name = "bionemo-example_model"
readme = "README.md"
description = "BioNeMo example_model: Example model for documentation and tutorials. Do Not Distriburte on PyPI !!"
authors = [{ name = "BioNeMo Team", email = "bionemofeedback@nvidia.com" }]
requires-python = ">=3.10"
classifiers = ["Private :: Do Not Upload", "Programming Language :: Python :: 3.10"]
license = { file = "LICENSE" }
dynamic = ["version"]
dependencies = [
'bionemo-core',
'bionemo-llm',
'megatron-core',
'nemo_toolkit',
'torchvision >= 0.15.1',
]
[project.optional-dependencies]
test = [
"bionemo-testing"
]
[tool.setuptools.packages.find]
where = ["src"]
include = ["bionemo.*"]
namespaces = true
exclude = ["test*."]
[tool.setuptools.dynamic]
version = { file = "VERSION" }
[tool.uv]
cache-keys = [{ git = true }]