-
-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.24 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "solidago"
authors = [
{ name="Tournesol Association", email="[email protected]" },
]
description = "Algorithms for Secure Algorithmic Governance"
readme = "README.md"
requires-python = ">=3.9"
license = "LGPL-3.0-or-later"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
]
keywords = ["tournesol", "collaborative recommendations", "judgement aggregation", "comparison based", "mehestan"]
dependencies = [
"pandas>=1.5.3,<3.0",
"numpy>=1.24.3,<1.27",
"numba==0.60.0",
]
dynamic = ["version"]
[project.urls]
"Homepage" = "https://github.com/tournesol-app/tournesol/tree/main/solidago"
"Bug Tracker" = "https://github.com/tournesol-app/tournesol/issues"
[project.optional-dependencies]
test = [
"pytest >=7.1.3,<9.0.0",
]
torch = [
"torch>=2.2,<3",
]
[tool.hatch.version]
path = "src/solidago/__version__.py"
[tool.pytest.ini_options]
filterwarnings = [
# Will be removed in Numba 0.58. See https://github.com/numba/numba/issues/8936
"ignore:Use of isinstance():numba.NumbaExperimentalFeatureWarning",
]