-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
48 lines (42 loc) · 1.02 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
[tool.poetry]
name = "votekit"
version = "3.0.0"
description = "A Swiss Army Knife for computational social choice research"
authors = ["MGGG <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.9,<3.13"
scipy = "^1.11.1"
mypy = "^1.4.1"
pydantic = "^2.8.2"
pandas-stubs = "^2.0.2.230605"
pot = "0.9.4"
networkx = "^3.1"
jinja2 = "^3.1.2"
matplotlib = "^3.7.2"
pandas = "^1.5.3"
apportionment = "^1.0"
scikit-learn = "^1.3.2"
numpy = "^1.26.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"
mkdocs = "^1.5.3"
mkdocs-autorefs = "^0.5.0"
mkdocs-click = "^0.8.1"
mkdocs-material = "^9.4.10"
mkdocs-material-extensions = "^1.3"
mkdocs-table-reader-plugin = "^2.0.3"
mkdocstrings = "^0.24.0"
mkdocstrings-python = "^1.7.4"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 100
[project.urls]
repository = "https://github.com/mggg/VoteKit"