-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
48 lines (45 loc) · 1.82 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
import setuptools
with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()
setuptools.setup(
name="delphi.ai",
version="0.2.1.9",
author="Patroklos Stefanou",
author_email="[email protected]",
description="Package for Robust Statistics",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/pstefanou12/delphi",
project_urls={
"Repository": "https://github.com/pstefanou12/delphi",
},
# Choose your license
license='MIT',
# See https://pypi.python.org/pypi?%4Aaction=list_classifiers
classifiers=[
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
packages=['delphi',
'delphi.utils',
'delphi.distributions',
'delphi.stats',
'delphi.imagenet_models',
'delphi.cifar_models',],
python_requires=">=3.6",
py_modules=['train', 'oracle', 'attacker', 'grad' 'attacker_steps'],
setup_requires=['tqdm', 'grpcio', 'psutil', 'gitpython','py3nvml', 'cox',
'scikit-learn', 'seaborn', 'torch', 'torchvision', 'pandas',
'numpy', 'scipy', 'GPUtil', 'dill', 'tensorboardX', 'tables',
'matplotlib', 'orthnet'],
install_requires=['tqdm', 'grpcio', 'psutil', 'gitpython','py3nvml', 'cox',
'scikit-learn', 'seaborn', 'torch', 'torchvision', 'pandas',
'numpy', 'scipy', 'GPUtil', 'dill', 'tensorboardX', 'tables',
'matplotlib', 'orthnet'],
)