forked from cvxpy/cvxpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (39 loc) · 1.36 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
from setuptools import setup
setup(
name='cvxpy',
version='0.4.5',
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.lin_ops',
'cvxpy.problems',
'cvxpy.problems.problem_data',
'cvxpy.problems.solvers',
'cvxpy.tests',
'cvxpy.transforms',
'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=["ecos >= 2",
"scs >= 1.1.3",
"multiprocess",
"fastcache",
"six",
"toolz",
"numpy >= 1.9",
"scipy >= 0.15",
"CVXcanon >= 0.0.22"],
use_2to3=True,
)