-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (49 loc) · 1.26 KB
/
setup.py
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
import setuptools
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="robustabstain",
version="0.0.1",
long_description=long_description,
long_description_content_type="text/markdown",
python_requires=">=3.8",
install_requires=[
'torch==1.7.1',
'torchvision==0.8.2',
'tensorboard',
'numpy',
'pandas==1.1.5',
'matplotlib==3.4.3',
'foolbox',
'robustness',
'tqdm',
'ipywidgets',
'plotly',
'tabulate',
'scipy',
'statsmodels',
'setGPU',
'sklearn',
'autoattack @ git+https://github.com/fra31/auto-attack.git@9b264b52bb65c373373727f532865a5551ab9c02#egg=autoattack',
'robustbench @ git+https://github.com/RobustBench/robustbench.git@master',
'efficientnet_pytorch',
'future',
'forbiddenfruit',
'pillow==6.2.1',
'six',
'tables',
'debtcollector>=1.2.0',
'netaddr>=0.7.18',
'rfc3986>=1.2.0',
'iso8601>=0.1.11',
'alive-progress',
'albumentations',
'kaleido',
'ray',
'colorama',
'msgpack',
'redis',
'filelock',
'click',
]
)