-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.04 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"
[tool.hatch.metadata]
allow-direct-references = true
[pytest]
testpaths = "tests"
[tool.pytest.ini_options]
addopts = [
"--import-mode=importlib",
]
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
line_length = 88
profile = "black"
[project]
name = "fair_stats"
version = "0.0.1"
authors = [
{ name="George Bissias", email="[email protected]" },
]
description = "Statistics for fair allocation"
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"black>=23.11.0",
"isort>=5.12.0",
"pdoc>=14.1.0",
"pytest>=7.4.3",
"fair@git+https://github.com/gbiss/2023-project-fair",
"numpy>=1.26.4",
"statsmodels>=0.14.1",
"scikit-learn>=1.4.1.post1",
]