-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (50 loc) · 1.43 KB
/
pyproject.toml
File metadata and controls
54 lines (50 loc) · 1.43 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
49
50
51
52
53
54
[build-system]
requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin"
[project]
name = "batss"
version = "1.0.2"
description = "A Python package with Rust backend for efficient simulation of chemical reaction networks using a batching algorithm."
requires-python = ">=3.10"
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Rust",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=2",
"jupyterlab>=4",
"matplotlib>=3",
"types-tqdm>=4",
"types-seaborn>=0.13",
"ipywidgets>=8",
"seaborn>=0.13",
"pandas>=2",
"tqdm>=4",
"natsort>=8",
"gpac>=1",
"polars>=1",
]
[project.urls]
Homepage = "https://github.com/UC-Davis-molecular-computing/batss"
Issues = "https://github.com/UC-Davis-molecular-computing/batss/issues"
API = "https://batss.readthedocs.io/"
[tool.maturin]
features = ["pyo3/extension-module"]
python-source = "python"
module-name = "batss.batss_rust.batss_rust"
include = ["batss/**/*.py", "batss/**/*.pyi", "batss/py.typed", "MANIFEST.in"]
# Ignore CONDA_PREFIX environment variable to avoid conflicts with virtual environments
ignore-conda-prefix = true
[project.optional-dependencies]
docs = [
"sphinx>=7.0.0",
"sphinx-rtd-theme",
"sphinx-autodoc-typehints",
"toml",
# Minimal runtime deps needed for autodoc
"numpy>=2",
"typing-extensions",
]