Skip to content

Commit

Permalink
revert pyproject formats
Browse files Browse the repository at this point in the history
Signed-off-by: Peter St. John <[email protected]>
  • Loading branch information
pstjohn committed Jan 30, 2025
1 parent 6003a0f commit 8785fa9
Showing 1 changed file with 24 additions and 19 deletions.
43 changes: 24 additions & 19 deletions sub-packages/bionemo-fw/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,35 +8,40 @@ readme = "README.md"
description = "BioNeMo Framework (FW): Production grade framework for AI-enabled Drug Discovery. Consists of all independently installable bionemo feature packages too."
authors = [{ name = "BioNeMo Team", email = "[email protected]" }]
requires-python = ">=3.10"
license = { file = "LICENSE" }
dynamic = ["version"]
dependencies = [
"bionemo-amplify",
"bionemo-core",
"bionemo-esm2",
"bionemo-geneformer",
"bionemo-geometric",
"bionemo-llm",
"bionemo-noodles",
"bionemo-scdl",
"bionemo-size-aware-batching",
"bionemo-webdatamodule",
"nltk",
"numba>=0.57.1",
"toml",
"zarr",
# bionemo sub-packages
'bionemo-core',
'bionemo-esm2',
'bionemo-geneformer',
'bionemo-geometric',
'bionemo-llm',
'bionemo-noodles',
'bionemo-scdl',
'bionemo-size-aware-batching',
'bionemo-webdatamodule',
'bionemo-amplify',
#
# NOTE: DO **NOT** INCLUDE:
# bionemo-testing (test-time only dependency)
# bionemo-example_model (documentation)
# bionemo-fw (itself!)
#
# external
'nltk',
'numba>=0.57.1',
'zarr',
]

[project.license]
file = "LICENSE"

[tool.setuptools.packages.find]
where = ["src"]
include = ["bionemo.*"]
namespaces = true
exclude = ["test*."]

[tool.setuptools.dynamic.version]
file = "VERSION"
[tool.setuptools.dynamic]
version = { file = "VERSION" }

[tool.uv]
cache-keys = [{ git = true }]

0 comments on commit 8785fa9

Please sign in to comment.