-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
49 lines (44 loc) · 1.17 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
[project]
name = "votekit"
version = "3.1.0"
description = "A Swiss army knife for computational social choice research."
authors = [{name = "MGGG", email = "[email protected]"}]
readme = "README.md"
requires-python = ">=3.10, <3.14"
dependencies = [
"scipy (>=1.11.1, <2.0)",
"mypy (==1.15)",
"pydantic (>=2.8.2, <3.0)",
"pandas-stubs (>=2.0.2.230605, <2.1)",
"pot (==0.9.4)",
"networkx (>=3.1, <4.0)",
"jinja2 (>=3.1.2, <4.0)",
"matplotlib (>=3.7.2, <4.0)",
"pandas (>2.2)",
"apportionment (>=1.0, <2.0)",
"scikit-learn (>=1.3.2, <2.0)",
"numpy (>=1.26.0, <2.0)",
"seaborn (>=0.13.2,<0.14.0)",
"types-seaborn (>=0.13.2.20250111,<0.14.0.0)",
]
[tool.poetry.group.dev.dependencies]
ruff = "^0.0.275"
black = "^24.8.0"
pytest = "^7.4.0"
pytest-cov = "^4.1.0"
pre-commit = "^3.3.3"
ipython = "^8.17.2"
sphinx = "^7.4.7"
sphinx-copybutton = "^0.5.2"
recommonmark = "^0.7.1"
sphinx-rtd-theme = "^3.0.2"
seaborn = "^0.13.2"
ipykernel = "^6.29.5"
nbconvert = "^7.16.6"
[tool.ruff]
line-length = 100
[project.urls]
repository = "https://github.com/mggg/VoteKit"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"