-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
38 lines (34 loc) · 1.1 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'name': 'cvx4py',
'version': '0.1',
'description': 'cvx like framework for python',
'author': 'Arthita, Sayantan, Hui',
'url': 'URL to get it at.',
'download_url': 'https://github.com/ssarkar2/cvx4py_2',
'version': '0.1',
'packages': {'cvx4py'},
'scripts': [],
'zip_safe': False,
'packages': [ 'cvx4py',
'cvx4py.ast',
'cvx4py.ast.atoms',
'cvx4py.ast.constraints',
'cvx4py.ast.expressions',
'cvx4py.ast.socps',
'cvx4py.properties',
'cvx4py.codegens',
'cvx4py.codegens.python',
'cvx4py.codes',
'cvx4py.codes.encoders',
'cvx4py.codes.coefficients',
'cvx4py.mixins',
'cvx4py.gp',
'cvx4py.sdp',],
}
#'install_requires': ['numpy', 'ply', 'scipy'],
setup(**config)