forked from maxjerdee/pairwise-ranking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
37 lines (33 loc) · 1001 Bytes
/
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
# pyproject.toml
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pairwise-ranking"
version = "1.0.2"
description = "Infer rankings and nature of hierarchies from paired comparisons"
readme = "README.md"
authors = [
{ name = "Maximilian Jerdee", email = "[email protected]" },
{ name = "Mark Newman", email = "[email protected]" },
]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["ranking", "statistics", "rating", "bayesian"]
dependencies = [
"pystan >= 3.7.0",
"matplotlib >= 3.8.0",
"numpy >= 1.26.0",
"scipy >= 1.11.3",
"networkx==3.2.1",
"pandas==2.1.3",
]
requires-python = ">=3.9"
[project.optional-dependencies]
dev = ["black", "bumpver", "isort", "pip-tools", "pytest"]
[project.urls]
Homepage = "https://github.com/maxjerdee/pairwise-ranking"