forked from bstellato/mlopt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (34 loc) · 1.15 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
from setuptools import setup
# Read README.rst file
def readme():
with open('README.md') as f:
return f.read()
setup(name='mlopt',
version='0.0.2',
description='The Machine Learning Optimizer',
long_description=readme(),
long_description_content_type='text/markdown',
author='Bartolomeo Stellato, Dimitris Bertsimas',
author_email='bartolomeo.stellato@gmail.com',
url='https://mlopt.org/',
packages=['mlopt',
'mlopt.learners',
'mlopt.tests'],
install_requires=["cvxpy",
"optuna",
"numpy",
"scipy",
"pandas",
"joblib",
"tqdm",
"scikit-learn",
"gurobipy",
# TODO: Choose a default one to keep
"xgboost",
"torch",
"torchvision",
"pytorch-lightning",
"scikit-umfpack"
],
license='Apache License, Version 2.0',
)