-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
61 lines (55 loc) · 1.37 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
[tool.poetry]
name = "research"
version = "0.1.0"
description = "A summer research project at the University of Auckland (2020/2021)"
authors = ["Zac Pullar-Strecker <zacmps@gmail.com>"]
license = "GPLv2"
[tool.poetry.dependencies]
python = "^3.7.1,<3.9"
adversarial-robustness-toolbox = "^1.5.1"
modAL = "^0.4.1"
sklearn = "^0.0"
tqdm = "^4.56.0"
joblib = "^1.0.0"
matplotlib = "^3.3.3"
numpy = "^1.19.5"
scipy = "^1.6.0"
pandas = "^1.2.0"
celluloid = "^0.2.0"
tabulate = "^0.8.7"
cvxpy = {version = "^1.1.7", optional = true}
Mosek = {version = "^9.2.35", optional = true}
requests = "^2.25.1"
statsmodels = "^0.12.2"
psutil = "^5.8.0"
dill = "^0.3.3"
beautifulsoup4 = "^4.9.3"
simple-slurm = "^0.1.6"
python-dotenv = "^0.15.0"
autorank = "^1.1.1"
seaborn = "^0.11.1"
traceback-with-variables = "^2.0.2"
[tool.poetry.dev-dependencies]
pylint = "^2.6.0"
black = "^20.8b1"
ipykernel = "^5.5.3"
ipynb = "^0.5.1"
ipywidgets = "^7.6.3"
cloudpickle = "^1.6.0"
pytest = "^6.2.4"
pytest-snapshot = "^0.6.1"
visitor = "^0.1.3"
[tool.black]
exclude = '(?:Imitate)|(?:tvregdiff)'
[tool.pytest.ini_options]
filterwarnings = "ignore::DeprecationWarning"
markers = [
"results"
]
[tool.pylint.miscellaneous]
# Allow TODO, FIXME notes
notes = "XXX"
disable = ["too-many-instance-attributes", "too-few-public-methods"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"