-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (63 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
71 lines (63 loc) · 1.64 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "fpsim"
dynamic = ["version"]
description = "FPsim: Family Planning Simulator"
readme = "README.md"
requires-python = ">=3.10"
license = {file = "LICENSE"}
keywords = ["family planning", "women's health", "agent-based model", "simulation"]
authors = [
{ name = "Michelle O'Brien", email = "info@fpsim.org" },
{ name = "Annie Valente" },
{ name = "Cliff Kerr" },
{ name = "Robyn Stuart" },
{ name = "Paula Sanz-Leon" },
{ name = "Aasli Nur" },
{ name = "Ryan Hull" },
{ name = "Daniel Klein" },
{ name = "Emily Driano" },
{ name = "Marita Zimmermann" },
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: Other/Proprietary License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy",
"numba",
"scipy",
"starsim>=3.1.0",
"pandas>=1.3",
"sciris>=2.1.0",
"matplotlib>=3.5.0",
"seaborn>=0.9",
"optuna",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4",
"pytest-cov",
"pytest-env",
"pytest-xdist",
"mkdocs",
"mkdocs-material",
"mkdocstrings[python]",
"mkdocs-include-markdown-plugin",
"mkdocs-jupyter",
]
[project.urls]
"Website" = "http://fpsim.org"
"Source" = "https://github.com/fpsim/fpsim/"
[tool.setuptools.packages.find]
where = ["."]
include = ["fpsim*"]
[tool.setuptools.dynamic]
version = {attr = "fpsim.version.__version__"}