forked from cvxpy/cvxpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (36 loc) · 1.29 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
from setuptools import setup
setup(
name='cvxpy',
version='0.2.17',
author='Steven Diamond, Eric Chu, Stephen Boyd',
packages=['cvxpy',
'cvxpy.atoms',
'cvxpy.atoms.affine',
'cvxpy.atoms.elementwise',
'cvxpy.constraints',
'cvxpy.expressions',
'cvxpy.expressions.constants',
'cvxpy.expressions.variables',
'cvxpy.interface',
'cvxpy.interface.numpy_interface',
'cvxpy.interface.cvxopt_interface',
'cvxpy.lin_ops',
'cvxpy.problems',
'cvxpy.problems.problem_data',
'cvxpy.problems.solvers',
'cvxpy.tests',
'cvxpy.utilities'],
package_dir={'cvxpy': 'cvxpy'},
url='http://github.com/cvxgrp/cvxpy/',
license='GPLv3',
zip_safe=False,
description='A domain-specific language for modeling convex optimization problems in Python.',
install_requires=["cvxopt >= 1.1.6",
"ecos >= 1.1.1",
"scs >= 1.0.6",
"toolz",
"numpy >= 1.8",
"scipy >= 0.13"],
use_2to3=True,
)