-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
112 lines (99 loc) · 3.16 KB
/
pyproject.toml
File metadata and controls
112 lines (99 loc) · 3.16 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[tool.poetry]
name = "black-it"
version = "0.3.3"
description = "black-it: Black-box abm calibration kit"
authors = [
"Applied Research Team <appliedresearchteam@bancaditalia.it>",
"Gennaro Catapano <gennaro.catapano@bancaditalia.it>",
"Francesco De Sclavis <desclavis@bancaditalia.it>",
"Marco Favorito <marco.favorito@bancaditalia.it>",
"Aldo Glielmo <aldo.glielmo@bancaditalia.it>",
"Davide Magnanimi <davide.magnanimi@bancaditalia.it>",
"Antonio Muci <antonio.muci@bancaditalia.it>",
]
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 = "^2.2.3"
scikit-learn = "^1.3.1"
seaborn = "^0.12.2"
statsmodels = "^0.14.1"
xgboost = "^1.7.6"
scipy = "^1.11.4"
joblib = "^1.3.2"
gymnasium = "^0.27.1"
h5py = "^3.13.0"
[tool.poetry.group.bandit.dependencies]
bandit = "^1.7.5"
[tool.poetry.group.darglint.dependencies]
darglint = "^1.8.1"
[tool.poetry.group.dev.dependencies]
codecov = "^2.1.13"
ipython = "^8.12.2"
jupyter = "^1.0.0"
ndlib = "^5.1.1"
pydocstyle = "^6.3.0"
tomli = { version = "^2.2.1", python = "<3.11" } # TODO: remove the dependency on tomli once the minimum supported python version becomes 3.11
tox = "^4.4.12"
[tool.poetry.group.docs.dependencies]
markdown = "^3.4.4"
markdown-include = "^0.8.1"
mkdocs = "^1.5.3"
mkdocs-autorefs = "^1.4.2"
mkdocs-material = "^9.4.1"
mkdocs-material-extensions = "^1.2"
mkdocstrings = "^0.30.1"
mkdocstrings-python-legacy = "^0.2.7"
mknotebooks = "^0.8.0"
pymdown-extensions = "^10.3"
[tool.poetry.group.mypy.dependencies]
# in order to use the mypy group, you'll also have to install testenv.
mypy = "^1.5.1"
[tool.poetry.group.ruff.dependencies]
ruff = "^0.14.5"
[tool.poetry.group.testenv.dependencies]
hypothesis = {extras = ["numpy"], version = "^6.86.2"}
mistletoe = "^1.2.1"
pytest = "^8.4.0"
pytest-cov = "^7.0.0"
pytest-randomly = "^4.0.1"
[tool.poetry.group.testenv_notebooks.dependencies]
Mesa = "^2.1.1"
nbmake = "^1.5.4"
[tool.poetry.group.vulture.dependencies]
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