-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (48 loc) · 1.31 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch]
version.path = "abstochkin/__init__.py"
[project]
name = "abstochkin"
description = "Agent-based Stochastic Kinetics: A method for simulating the dynamics of heterogeneous populations."
dynamic = ["version"]
readme = "README.md"
license.file = "LICENSE"
authors = [
{ name = "Alex Plakantonakis", email = "[email protected]" },
]
maintainers = [
{ name = "Alex Plakantonakis", email = "[email protected]" },
]
requires-python = ">=3.12"
dependencies = [
"numpy >=1.24",
"scipy >=1.10",
"sympy >=1.10",
"matplotlib >=3.5",
"plotly >=5.24",
"tqdm >=4.66"
]
classifiers = [
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
]
[project.optional-dependencies]
docs = [
"myst_parser >=2.0",
"sphinx >=7.0",
"pdoc >=15"
]
plotly = [
"kaleido"
]
[project.urls]
Homepage = "https://github.com/alexplaka/AbStochKin"
Documentation = "https://alexplaka.github.io/AbStochKin"
Issues = "https://github.com/alexplaka/AbStochKin/issues"