[be1279]: / sub-packages / bionemo-core / pyproject.toml

Download this file

49 lines (42 with data), 1.1 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
41
42
43
44
45
46
47
48
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bionemo-core"
readme = "README.md"
description = "BioNeMo core interfaces and PyTorch-related code."
authors = [{ name = "BioNeMo Team", email = "bionemofeedback@nvidia.com" }]
requires-python = ">=3.10"
license = { file = "LICENSE" }
dynamic = ["version"]
dependencies = [
# bionemo sub-packages
# bionemo-core **MUST NOT** depend on any other sub-packages !!!!!
# external
"numpy",
"platformdirs",
"torch>=2.2.1",
'boto3',
'lightning>=2.2.1',
'nest_asyncio',
'ngcsdk',
'pooch',
'pydantic[email]>=2.7.0',
'pyyaml',
'tqdm',
'uv',
]
[project.scripts]
download_bionemo_data = "bionemo.core.data.load:entrypoint"
# Make sure that the resource yaml files are being packaged alongside the python files.
[tool.setuptools.package-data]
"bionemo.core" = ["**/*.yaml"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["bionemo.*"]
namespaces = true
exclude = ["test*."]
[tool.setuptools.dynamic]
version = { file = "VERSION" }
[tool.uv]
cache-keys = [{ git = true }]