-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
37 lines (33 loc) · 893 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "jsmfsb"
version = "1.1.6"
authors = [
{ name="Darren Wilkinson", email="[email protected]" },
]
description = "Python+JAX code relating to the textbook, Stochastic modelling for systems biology, third edition"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"sbmlsh",
"numpy>=2",
"scipy",
"jaxlib"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[tool.hatch.build.targets.wheel]
packages = ["src/jsmfsb"]
[tool.hatch.envs.hatch-test]
extra-dependencies = [
'jax',
]
[project.urls]
Homepage = "https://github.com/darrenjw/jax-smfsb"
Documentation = "https://jax-smfsb.readthedocs.io/"
Issues = "https://github.com/darrenjw/jax-smfsb/issues"