-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (59 loc) · 1.54 KB
/
pyproject.toml
File metadata and controls
64 lines (59 loc) · 1.54 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
[project]
name = "ct_simulator"
version = "0.2.0"
description = "A Python package that can simulate the effects of various contact tracing strategies on the spread of viruses."
readme = "README.md"
authors = [
{name = "Andrei C. Rusu (andrei-rusu)"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Libraries",
]
requires-python = ">=3.9"
dependencies = [
"dill",
"matplotlib",
"networkx",
"numpy",
"pandas",
"scipy",
"tqdm",
"ct-simulator @ file:///${PROJECT_ROOT}/dist/ct_simulator-0.2.0-py3-none-any.whl",
]
license = {text = "MIT"}
[project.urls]
Homepage = "https://github.com/andrei-rusu/contact-tracing-model"
"Bug Tracker" = "https://github.com/andrei-rusu/contact-tracing-model/issues"
[project.optional-dependencies]
draw = [
"ipython",
]
draw_full = [
"imageio",
"ipython",
"plotly",
"pygraphviz",
"pyvis",
]
control = [
"control_diffusion @ git+https://github.com/andrei-rusu/control-diffusion.git#egg=control_diffusion",
]
control_learn = [
"control_diffusion @ git+https://github.com/andrei-rusu/control-diffusion.git#egg=control_diffusion[learn]",
]
mcmc = [
"arviz==0.14.0",
"numpy==1.23.5",
"pymc3",
"theano-pymc",
]
[project.scripts]
run-tracing = "ct_simulator.run_tracing:main"
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"