-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
96 lines (91 loc) · 2.62 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
[tool.poetry]
name = "black-it"
version = "0.3.1"
description = "black-it: Black-box abm calibration kit"
authors = [
"Applied Research Team <[email protected]>",
"Gennaro Catapano <[email protected]>",
"Francesco De Sclavis <[email protected]>",
"Marco Favorito <[email protected]>",
"Aldo Glielmo <[email protected]>",
"Davide Magnanimi <[email protected]>",
"Antonio Muci <[email protected]>",
]
license = "AGPL-3.0-or-later"
readme = "README.md"
homepage = "https://github.com/bancaditalia/black-it"
repository = "https://github.com/bancaditalia/black-it.git"
documentation = "https://bancaditalia.github.io/black-it"
keywords = [
"agent-based models",
"black-box calibration",
]
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Topic :: Scientific/Engineering'
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/bancaditalia/black-it/issues"
"Pull Requests" = "https://github.com/bancaditalia/black-it/pulls"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
ipywidgets = "^8.1.2"
matplotlib = "^3.7.3"
numpy = ">=1.24.4,<1.27.0"
pandas = "^1.5.3"
scikit-learn = "^1.3.1"
seaborn = "^0.12.2"
statsmodels = "^0.14.1"
tables = "^3.8.0"
xgboost = "^1.7.6"
scipy = "^1.11.4"
joblib = "^1.3.2"
gymnasium = "^0.27.1"
[tool.poetry.dev-dependencies]
bandit = "^1.7.5"
black = "^24.8.0"
codecov = "^2.1.13"
darglint = "^1.8.1"
hypothesis = "^6.86.2"
ipython = "^8.12.2"
jupyter = "^1.0.0"
Markdown = "^3.4.4"
markdown-include = "^0.8.1"
Mesa = "^2.1.1"
mistletoe = "^1.2.1"
mkdocs = "^1.5.3"
mkdocs-autorefs = "^0.5.0"
mkdocs-material = "^9.4.1"
mkdocs-material-extensions = "^1.2"
mkdocstrings = "^0.22.0"
mkdocstrings-python-legacy = "^0.2.3"
mknotebooks = "^0.8.0"
mypy = "^1.5.1"
nbmake = "^1.5.4"
ndlib = "^5.1.1"
pydocstyle = "^6.3.0"
pymdown-extensions = "^10.3"
pytest = "^7.4.2"
pytest-cov = "^4.1.0"
pytest-randomly = "^3.15.0"
ruff = "^0.0.290"
tox = "^4.4.12"
twine = "^4.0.2"
vulture = "^2.9.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.vulture]
exclude = ["examples/models"]
ignore_decorators = []
ignore_names = []
verbose = false