-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpyproject.toml
62 lines (57 loc) · 1.25 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
exclude = [
"examples",
"tests"
]
[project]
name = "shangrla"
version = "0.1.0"
authors = [
{name = "Philip B. Stark", email = "[email protected]"},
{name = "Vanessa Teague"},
{name = "Michelle Blom"},
{name = "Alexander Ek"},
{name = "Floyd Everest"},
{name = "Damjan Vukcevic"}
]
maintainers = [
{name = "Philip B. Stark", email = "[email protected]"},
]
description = "A Python library for risk-limiting audits"
readme = "README.md"
license = {file = "LICENSE.md"}
keywords = ["risk-limiting audits", "nonparametric tests"]
classifiers = [
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent"
]
dependencies = [
"numpy",
"scipy >= 0.17.1",
"cryptorandom >= 0.2",
"svgling",
"colorama"
]
[project.optional-dependencies]
examples = [
"matplotlib",
"pandas"
]
test = [
"pandas",
"pytest",
"pytest-cov",
"coverage",
"flake8",
"openpyxl"
]
[project.scripts]
raire = "shangrla.raire.run_raire:main"
shangrla-irv-bp = "shangrla.core.run_shangrla_irv_bp_experiment:main"