-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
25 lines (24 loc) · 907 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
import setuptools
from distutils.core import setup
setup(
name = 'kinetics',
packages = ['kinetics',
'kinetics.optimisation',
'kinetics.other_analysis',
'kinetics.reaction_classes',
'kinetics.ua_and_sa'],
setup_requires=['wheel'],
version = '1.4.3',
license='MIT',
description = 'Python code to run kinetic models of enzyme reactions',
author = 'William Finnigan',
author_email = '[email protected]',
url = 'https://github.com/willfinnigan/kinetics',
download_url = 'https://github.com/willfinnigan/kinetics/archive/1.4.3.tar.gz',
keywords = ['enzyme', 'kinetics', 'modelling'],
install_requires=['scipy', 'numpy', 'SALib', 'tqdm', 'matplotlib', 'pandas', 'deap', 'seaborn'],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'],
)