-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
63 lines (54 loc) · 1.63 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
54
55
56
57
58
59
60
61
62
63
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "starsim"
dynamic = ["version"]
description = "A fast, flexible agent-based disease modeling framework"
readme = "README.rst"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["agent-based model", "simulation", "disease", "epidemiology"]
authors = [
{ name = "Starsim Development Team", email = "[email protected]" },
{ name = "Cliff Kerr" },
{ name = "Robyn Stuart" },
{ name = "Romesh Abeysuriya" },
{ name = "Paula Sanz-Leon" },
{ name = "Jamie Cohen" },
{ name = "Daniel Klein" }
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12"
]
dependencies = [
"numpy>=1.24.0",
"pandas>=2.0.0",
"sciris>=3.2.0",
"numba",
"scipy",
"matplotlib",
"networkx",
"optuna"
]
[project.optional-dependencies]
fastmath = ["intel-cmplr-lib-rt"]
test = ["pytest>=7.3", "pytest-cov", "pytest-env", "pytest-xdist"]
[project.urls]
"Website" = "https://starsim.org"
"Source" = "https://github.com/starsimhub/starsim/"
[tool.setuptools.packages.find]
where = ["."]
include = ["starsim*"]
[tool.setuptools.package-data]
mypkg = ["*.ipynb", "*.rst", "*.csv"]
[tool.setuptools.dynamic]
version = {attr = "starsim.version.__version__"}