-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
35 lines (32 loc) · 1.11 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name='vision_aided_loss',
version='0.1.0',
author="Nupur Kumari",
author_email="[email protected]",
description="Vision-aided adversarial training",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nupurkmr9/vision_aided_loss",
packages=['vision_aided_loss'],
install_requires=[
"torch>=1.8.0",
"torchvision>=0.9.0",
"numpy>=1.14.3",
"requests",
"timm",
"antialiased_cnns",
"gdown==4.4.0",
"ftfy",
"regex",
"tqdm",
"clip@git+https://github.com/openai/CLIP.git"
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
],
)