-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
36 lines (34 loc) · 1.28 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
from setuptools import setup,find_packages
import os
here = os.path.abspath(os.path.dirname(__file__))
md_path = os.path.join(here, 'dro/README.md')
setup(
name='dro',
version='0.1.1',
license='MIT License',
description='A package of distributionally robust optimization (DRO) methods. Implemented via cvxpy and PyTorch',
long_description=open(md_path, encoding='utf-8').read(),
long_description_content_type='text/markdown',
url='https://github.com/namkoong-lab/dro',
author='Jiashuo Liu, Tianyu Wang, Peng Cui, Hongseok Namkoong, and Jose Blanchet',
author_email='[email protected], [email protected]',
packages=find_packages(),
install_requires=['pandas',
'numpy',
'scikit-learn',
'torch',
'scipy',
'cvxpy',
'torchvision',
'ucimlrepo',
'matplotlib',
'torchattacks'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
'Operating System :: POSIX :: Linux',
],
python_requires=">=3",
)