-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
TODO add "bionemo-noodles" back to this & toplevel & tach.toml !!!
- Loading branch information
1 parent
08d6c1b
commit 2250617
Showing
1 changed file
with
30 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }] |