-
Notifications
You must be signed in to change notification settings - Fork 99
/
setup.py
31 lines (29 loc) · 1.17 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
import setuptools
with open("README.md", "r", encoding='utf-8') as fh:
long_description = fh.read()
setuptools.setup(
name="robustbench",
version="1.1",
author="Francesco Croce, Maksym Andriushchenko, Vikash Sehwag, Edoardo Debenedetti",
author_email="[email protected]",
description="This package provides the data for RobustBench together with the model zoo.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/RobustBench/robustbench",
packages=setuptools.find_packages(),
install_requires=[
'torch>=1.7.1', 'torchvision>=0.8.2', 'torchdiffeq', 'geotorch',
'requests>=2.25.0', 'numpy>=1.19.4', 'Jinja2~=3.1.2', 'tqdm>=4.56.1',
'pandas>=1.3.5',
'autoattack @ git+https://github.com/fra31/auto-attack.git@a39220048b3c9f2cca9a4d3a54604793c68eca7e#egg=autoattack',
'timm>=0.9.0',
'gdown==5.1.0',
'pyyaml',
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
include_package_data=True,
)