forked from Coramin/Coramin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (28 loc) · 847 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
from setuptools import setup, find_packages
from distutils.core import Extension
DISTNAME = 'coramin'
VERSION = '0.1.0'
EXTENSIONS = []
DESCRIPTION = 'Coramin: Pyomo tools for MINLP'
LONG_DESCRIPTION = open('README.md').read()
AUTHOR = 'Coramin Developers'
MAINTAINER_EMAIL = '[email protected]'
LICENSE = 'Revised BSD'
URL = 'https://github.com/Coramin/Coramin'
setuptools_kwargs = {
'zip_safe': False,
'install_requires': ['pyomo>=5.6', 'numpy', 'scipy'],
'scripts': [],
'include_package_data': True,
}
setup(name=DISTNAME,
version=VERSION,
packages=find_packages(),
ext_modules=EXTENSIONS,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
maintainer_email=MAINTAINER_EMAIL,
license=LICENSE,
url=URL,
**setuptools_kwargs)