-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (27 loc) · 1.01 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
import setuptools
setuptools.setup(
name='aspo',
version='0.1.0',
description='Auxiliary package for "An Algebraic Perspective to Signomial Optimization"',
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Natural Language :: English',
'License :: OSI Approved :: Apache Software License',
'Development Status :: 3 - alpha',
'Operating System :: OS Independent',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Mathematics'
],
python_requires='>=3.6',
install_requires=["ecos >= 2",
"numpy >= 1.14",
"scipy >= 1.1",
"sageopt >= 0.5.3",
"matplotlib",
"pyomo"],
)