Skip to content

Commit

Permalink
TODO add "bionemo-noodles" back to this & toplevel & tach.toml !!!
Browse files Browse the repository at this point in the history
  • Loading branch information
malcolmgreaves committed Nov 14, 2024
1 parent 08d6c1b commit 2250617
Showing 1 changed file with 30 additions and 40 deletions.
70 changes: 30 additions & 40 deletions sub-packages/bionemo-fw/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,56 +1,46 @@
[build-system]
requires = [
"setuptools>=64",
"wheel",
]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "bionemo-fw"
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]" },
]
authors = [{ name = "BioNeMo Team", email = "[email protected]" }]
requires-python = ">=3.10"
dynamic = [
"version",
]
license = { file = "LICENSE" }
dynamic = ["version"]
dependencies = [
"bionemo-core",
"bionemo-esm2",
"bionemo-geneformer",
"bionemo-geometric",
"bionemo-llm",
"bionemo-scdl",
"bionemo-size-aware-batching",
"bionemo-webdatamodule",
"nltk",
"numba>=0.57.1",
"tensorstore==0.1.45",
"zarr",
"bionemo-noodles",
# bionemo sub-packages
'bionemo-core',
'bionemo-esm2',
'bionemo-geneformer',
'bionemo-geometric',
'bionemo-llm',
'bionemo-scdl',
'bionemo-size-aware-batching',
'bionemo-webdatamodule',
#
# NOTE: DO **NOT** INCLUDE:
# bionemo-testing (test-time only dependency)
# bionemo-example_model (documentation)
# bionemo-fw (itself!)
#
# external
'nltk',
'numba>=0.57.1',
'tensorstore==0.1.45',
'zarr',
]

[project.license]
file = "LICENSE"

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

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

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

0 comments on commit 2250617

Please sign in to comment.