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

Download this file

41 lines (35 with data), 944 Bytes

 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 = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "bionemo-noodles"
readme = "README.md"
description = "Python wrapper around [noodles](https://github.com/zaeleus/noodles)."
authors = [{ name = "BioNeMo Team", email = "bionemofeedback@nvidia.com" }]
requires-python = ">=3.10"
license = { file = "LICENSE" }
dynamic = ["version"]
dependencies = [
# internal
'bionemo-core',
# external
'pyfaidx',
]
[project.optional-dependencies]
test = [
'torch',
]
[tool.maturin]
bindings = "pyo3"
compatibility = "manylinux_2_28"
python-source = "src"
# we could make this bionemo.noodles.fasta_wrapper, but that would require it to be its own namespaced package.
module-name = "bionemo.noodles_fasta_wrapper"
version = { file = "VERSION" }
[tool.setuptools.packages.find]
where = ["src"]
include = ["bionemo.*"]
namespaces = true
exclude = ["test*."]
[tool.uv]
cache-keys = [{ git = true }]