forked from salvadorgarciamunoz/kipet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.14 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
from setuptools import setup, find_packages
from distutils.core import Extension
DISTNAME = 'kipet'
VERSION = '1.1.01'
PACKAGES = find_packages()
EXTENSIONS = []
DESCRIPTION = 'Package for kinetic parameter estimation based on spectral or concentration data'
LONG_DESCRIPTION = '' #open('README.md').read()
AUTHOR = 'Christina Schenk, Michael Short, Jose Santiago Rodriguez, David M. Thierry, Salvador Garcia-Munoz, Lorenz T. Biegler'
MAINTAINER_EMAIL = '[email protected]'
LICENSE = 'GPL-3'
URL = 'https://github.com/salvadorgarciamunoz/kipet'
setuptools_kwargs = {
'zip_safe': False,
'install_requires': ['six',
'pyomo>=5.5',
'numpy',
'scipy',
'pandas',
'matplotlib'],
'scripts': [],
'include_package_data': True
}
setup(name=DISTNAME,
version=VERSION,
packages=PACKAGES,
ext_modules=EXTENSIONS,
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
author=AUTHOR,
maintainer_email=MAINTAINER_EMAIL,
license=LICENSE,
url=URL,
**setuptools_kwargs)