-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
executable file
·34 lines (30 loc) · 892 Bytes
/
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
#!/usr/bin/python3
from setuptools import setup
"""
Setup script for polynomial optimization module distribution.
by Pavel Trutman, [email protected]
"""
setup (
# Distribution meta-data
name='polyopt',
version='2.1',
description='Polynomial optimization problem solver.',
long_description='This Python package enables you to solve semidefinite programming problems. Also provides a tool to convert a polynomial optimization problem into semidefinite programme.',
author='Pavel Trutman',
author_email='[email protected]',
url='https://github.com/PavelTrutman/POP-SDP',
package_dir={'PolyOpt' : '.'},
packages = ['polyopt'],
test_suite='tests',
install_requires=[
'numpy',
'sympy',
'mpmath',
'scipy',
'gnuplot-py',
'pycallgraph',
],
dependency_links=[
'git://github.com/PavelTrutman/gnuplot.py-py3k.git#egg=gnuplot-py',
]
)