-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
67 lines (60 loc) · 1.53 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
63
64
65
66
67
[tool.poetry]
name = "privacyraven"
version = "0.1.0"
description = "privacy testing for deep learning"
readme = "README.md"
homepage = "https://github.com/trailofbits/PrivacyRaven"
repository = "https://github.com/trailofbits/PrivacyRaven"
authors = ["suhacker1 <suhashussain1@gmail.com>"]
[tool.poetry.dependencies]
python = ">=3.6.2,<4.0"
torch = "^1.8.0"
torchvision = "^0.9.0"
click = "^7.1.2"
tqdm = "^4.46.1"
matplotlib = "^3.2.1"
pytorch_lightning = "^1.1.0"
ipykernel = "^5.3.0"
attrs = "^19.3.0"
sklearn = "^0.0"
pytest = "^6.0.2"
flake8 = "^3.8.3"
isort = "5.5.3"
fsspec = "0.8.5"
adversarial-robustness-toolbox = "1.4.1"
pytorch-lightning-bolts = "0.2.5"
hypothesis = "^5.41.1"
jupyter = "^1.0.0"
jupyterlab = "^1.2.21"
wheel = "^0.36.2"
scalene = "^1.1.12"
memory_profiler = "^0.58.0"
pyrsistent = "^0.17.3"
torchmetrics = "^0.3.1"
[tool.poetry.dev-dependencies]
pytest = "^6.0"
coverage = {extras = ["toml"], version = "5.1"}
pytest-cov = "^2.9.0"
pytest-mock = "^3.1.1"
black = "19.10b0"
flake8 = "^3.8.2"
flake8-bandit = "^2.1.2"
flake8-black = "^0.2.0"
flake8-bugbear = "^20.1.4"
flake8-import-order = "^0.18.1"
safety = "^1.9.0"
flake8-docstrings = "^1.5.0"
[tool.poetry.scripts]
privacyraven = "privacyraven.console:main"
[tool.coverage.paths]
source = ["src", "*/site-packages"]
[tool.coverage.run]
branch = true
source = ["privacyraven"]
[tool.coverage.report]
show_missing = true
[build-system]
# requires = ["poetry>=0.12"]
# build-backend = "poetry.masonry.api"
requires = ["poetry_core>=1.0.0"]
build-backend = "poetry.core.masonry.api"