-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
69 lines (64 loc) · 1.98 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
64
65
66
67
[tool.poetry]
name = "cdslib_agents"
version = "0.0.7a1"
description = "Contagious diseases simulation using Agent-Based Models"
authors = [
"Camilo Hincapié Gutiérrez <[email protected]>",
"Ian Nicolás Mejía <[email protected]>",
"Vladimir Emil Rueda Gómez <[email protected]>",
"Nicole Rivera Parra <[email protected]>",
"Carolina Rojas Duque <[email protected]>",
]
maintainers = [
"Vladimir Emil Rueda Gómez <[email protected]>",
"Nicole Rivera Parra <[email protected]>",
"Carolina Rojas Duque <[email protected]>",
"FEnFiSDi Group <[email protected]>",
]
readme = "README.md"
homepage = "https://pypi.org/project/cdslib-agents/"
repository = "https://github.com/fenfisdi/cdslib_agents"
documentation = "https://fenfisdi.github.io/cdslib/agents.html"
keywords = [
"Complex Systems",
"Computation",
"Epidemiology",
"Nonlinear dynamics",
"Agent Based Models"
]
classifiers = [
"Intended Audience :: Science/Research",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Education",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Education",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries"
]
packages = [
{ include = "abmodel" }
]
license = "GPL-3.0-only"
[tool.poetry.dependencies]
python = ">3.9.7, <3.11"
numpy = "^1.21"
scipy = "^1.6.3"
pandas = "^1.2.4"
scikit-learn = "^0.24.2"
pydantic = "^1.8.2"
munch = "^2.5.0"
dask = "^2022.4.0"
bokeh = "^2.4.3"
snakeviz = "^2.1.1"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
Sphinx = "^4.3.2"
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"