-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
59 lines (55 loc) · 1.76 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
52
53
54
55
56
57
58
59
import setuptools
# read the contents of your README file
from os import path
this_directory = path.abspath(path.dirname(__file__))
with open(path.join(this_directory, "README.md"), encoding="utf-8") as f:
long_description = f.read()
setuptools.setup(
name="mair",
version="1.0.3",
description="MAIR is a PyTorch-based adversarial training framework.",
author="Harry Kim",
author_email="[email protected]",
packages=setuptools.find_packages(),
keyword=[
"deeplearning",
"adversarial",
"attack",
"pytorch",
"torch",
"defense",
"at",
"trades",
"mart",
],
install_requires=[
"torch>=1.7.1",
"torchvision>=0.8.2",
"scipy>=0.14.0",
"tqdm>=4.56.1",
"requests~=2.25.1",
"numpy>=1.19.4",
],
python_requires=">=3",
zip_safe=False,
license="MIT",
url="https://github.com/HarryK24/MAIR",
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Visualization",
# Pick your license as you wish (should match "license" above)
"License :: OSI Approved :: MIT License",
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent",
],
include_package_data=True,
)