-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (20 loc) · 772 Bytes
/
setup.py
File metadata and controls
22 lines (20 loc) · 772 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
Description = """Solve a generic optimization problem based on truncated moment problem by
constructing a series of semidefinite relaxations."""
setup(
name='Irene',
version='1.2.5',
author='Mehdi Ghasemi',
author_email='mehdi.ghasemi@gmail.com',
packages=['Irene', 'pyProximation'],
url='https://github.com/mghasemi/Irene.git',
license='MIT License',
description=Description,
long_description=open('README.rst').read(),
keywords=["Optimization", "Semidefinite Programming", "Convex Optimization",
"Polynomial Optimization", "Non-Convex Optimization"],
install_requires=['sympy', 'numpy', 'scipy', 'multiprocess']
)