forked from peterwittek/ncpol2sdpa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
44 lines (43 loc) · 1.38 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
41
42
43
44
"""
Ncpol2SDPA: A converter from commutative and noncommutative polynomial
optimization problems to sparse SDP input formats.
"""
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='ncpol2sdpa',
version='1.12.3',
author='Peter Wittek',
author_email='[email protected]',
packages=['ncpol2sdpa'],
url='http://ncpol2sdpa.readthedocs.io/',
keywords=[
'sdp',
'semidefinite programming',
'relaxation',
'polynomial optimization problem',
'noncommuting variable',
'sdpa'],
license='LICENSE',
description='Solve global polynomial optimization problems of either\
commutative variables or noncommutative operators through\
a semidefinite programming (SDP) relaxation',
long_description=open('README.rst').read(),
classifiers=[
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
'Development Status :: 5 - Production/Stable',
'Topic :: Scientific/Engineering :: Mathematics',
'Topic :: Scientific/Engineering :: Physics',
'Intended Audience :: Science/Research',
'Programming Language :: Python'
],
install_requires=[
"sympy >= 1.0",
"numpy",
"scipy"
],
test_suite="tests"
)