forked from cvxpy/cvxpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (29 loc) · 1.14 KB
/
setup.py
File metadata and controls
30 lines (29 loc) · 1.14 KB
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
from distutils.core import setup
setup(
name='cvxpy',
version='0.1',
author='Steven Diamond, Eric Chu, Stephen Boyd',
author_email='stevend2@stanford.edu, echu508@stanford.edu, boyd@stanford.edu',
packages=[ 'cvxpy',
'cvxpy.atoms',
'cvxpy.atoms.affine',
'cvxpy.atoms.elementwise',
'cvxpy.atoms.nonlinear',
'cvxpy.constraints',
'cvxpy.expressions',
'cvxpy.expressions.constants',
'cvxpy.expressions.variables',
'cvxpy.interface',
'cvxpy.interface.numpy_interface',
'cvxpy.interface.cvxopt_interface',
'cvxpy.problems',
'cvxpy.tests',
'cvxpy.utilities'],
package_dir={'cvxpy': 'cvxpy'},
url='http://github.com/cvxgrp/cvxpy/',
license='...',
description='A domain-specific language for modeling convex optimization problems in Python.',
long_description=open('README.md').read(),
requires = ["cvxopt(>= 1.1.6)",
"ecos(>=1.0)"] # this doesn't appear to do anything unfortunately
)