-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
36 lines (36 loc) · 1.33 KB
/
setup.py
File metadata and controls
36 lines (36 loc) · 1.33 KB
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
import setuptools
with open('README.md', 'r') as fh:
long_description = fh.read()
setuptools.setup(
name='stir-invariance',
version='0.0',
author='Vedant Nanda',
author_email="vedant@cs.umd.edu",
description="STIR -- shared invariance measure",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/nvedant07/STIR",
packages=['stir',
'stir.attack',
'stir.model',
'stir.model.tools',
'stir.model.cifar_models'],
install_requires=['torch>=1.8.1',
'torchvision>=0.9.1',
'numpy>=1.22.0',
'scipy>=1.0.1',
'tqdm>=4.56.0',
'matplotlib>=3.2.2',
'matplotlib-venn>=0.11.6',
'seaborn>=0.11.0',
'joblib>=0.17.0',
'dill>=0.3.3',
'scikit-learn>=0.23.2',
'Pillow>=9.0.1'],
classifiers=[
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Development Status :: 4 - Beta'],
)