-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 995 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 995 Bytes
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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pref_voting"
version = "1.17.13"
description = "pref_voting is a Python package that contains tools to reason about elections and margin graphs, and implementations of voting methods."
authors = ["Eric Pacuit <epacuit@umd.edu>", "Wes Holliday <wesholliday@berkeley.edu>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/voting-tools/pref_voting"
repository = "https://github.com/voting-tools/pref_voting"
packages = [{include = "pref_voting"}] # Explicitly specify the package
[tool.poetry.dependencies]
python = "^3.10"
scipy = "^1.0.0"
networkx = "^3.0"
tabulate = "^0.9.0"
random2 = "^1.0.1"
matplotlib = "^3.5.2"
nashpy = "^0.0.40"
numba = "^0.61.0"
ortools = "^9.8.0"
prefsampling = "^0.1.16"
filelock = "^3.12.2"
preflibtools = "^2.0.22"
seaborn = "^0.13.2"
pathos = "^0.3.3"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
pytest-cov = "^6.1.1"