-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (69 loc) · 1.71 KB
/
pyproject.toml
File metadata and controls
73 lines (69 loc) · 1.71 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
[tool.poetry]
name = "DemocracySim"
version = "0.1.0"
description = "Simulated Multi-Agent Democracy for thesis experiments"
authors = ["Paul Kühnel"]
readme = "README.md"
license = "MIT"
keywords = [
"ABM",
"multi-agent simulation",
"Mesa",
"collective intelligence",
"computational social choice",
"simulated democracy"
]
homepage = "https://github.com/jurikane/DemocracySim"
repository = "https://github.com/jurikane/DemocracySim"
python = "^3.11"
[tool.poetry.dependencies]
python = "^3.11"
mesa = "2.3.0"
mesa-replay = { git = "https://github.com/Logende/mesa-replay.git", rev = "main" }
numpy = "1.26.4"
pandas = "2.2.2"
matplotlib = "3.9.0"
pyparsing = "3.2.3"
seaborn = "0.13.2"
solara = "1.44.1"
ipyvuetify = "1.9.4"
click = "8.1.7"
networkx = "3.3"
flask = "3.1.2"
altair = "5.3.0"
streamlit = "1.37.1"
pydantic = "2.11.9"
pydantic-core = "2.33.2"
annotated-types = ">=0.6.0"
typing-inspection = ">=0.4.0"
PyYAML = "6.0.3"
toml = "0.10.2"
tornado = ">=6.5.2,<7"
toolz = "1.0.0"
blinker = ">=1.0.0,<2"
gitpython = "!=3.1.19,<4,>=3.0.7"
protobuf = ">=3.20,<6"
pyarrow = ">=7.0"
pydeck = ">=0.8.0b4,<1"
tenacity = ">=8.1.0,<9"
statsmodels = "^0.14.2"
scikit-learn = "^1.5.2"
[tool.poetry.dev-dependencies]
pytest = "8.2.0"
pytest-cov = "5.0.0"
black = "24.3.0"
mypy = "1.5.1"
mkdocs = "1.6.0"
mkdocs-material = "9.5.25"
mkdocs-autorefs = "1.3.0"
mkdocs-get-deps = "0.2.0"
mkdocs-git-revision-date-localized-plugin = "0.9.3"
mkdocs-material-extensions = "1.3.1"
mkdocs-static-i18n = "1.2.3"
mkdocstrings = "0.27.0"
mkdocstrings-python = "1.13.0"
[tool.poetry.include]
"DemocracySim/configs/*.yaml" = "DemocracySim/configs"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"