-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.04 KB
/
pyproject.toml
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
[project]
name = "enzax"
version = "0.1.2"
description = "Differentiable models of enzyme-catalysed reaction networks"
authors = [
{name = "Teddy Groves", email = "[email protected]"},
]
dependencies = [
"blackjax>=1.2.1",
"diffrax>=0.6.0",
"jaxtyping>=0.2.31",
"arviz>=0.19.0",
"jax>=0.4.35",
"equinox>=0.11.9",
"python-libsbml>=5.20.4",
"sympy2jax>=0.0.5",
"sbmlmath>=0.2.0",
]
requires-python = ">=3.12"
readme = "README.md"
license = {text = "MIT"}
[project.optional-dependencies]
docs = [
"mkdocs>=1.6.0",
"mkdocs-material>=9.5.32",
"mkdocstrings>=0.25.2",
"mkdocstrings-python>=1.10.8",
"pymdown-extensions>=10.9",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pdm]
distribution = true
[tool.ruff]
line-length = 80
[tool.ruff.lint]
ignore = ["F722"]
extend-select = ["E501"] # line length is checked
[tool.ruff.lint.isort]
known-first-party = ["enzax"]
[dependency-groups]
dev = [
"pytest>=8.3.3",
"pytest-cov>=5.0.0",
"pre-commit>=3.8.0",
]