-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 1.05 KB
/
setup.py
File metadata and controls
30 lines (28 loc) · 1.05 KB
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
import setuptools
from distutils.core import setup
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name = 'kinetics',
packages = ['kinetics',
'kinetics.optimisation',
'kinetics.other_analysis',
'kinetics.reaction_classes',
'kinetics.ua_and_sa'],
setup_requires=['wheel'],
version = '1.4.5',
license='MIT',
description = 'Python code to run kinetic models of enzyme reactions',
long_description=long_description,
long_description_content_type="text/markdown",
author = 'William Finnigan',
author_email = 'wjafinnigan@gmail.com',
url = 'https://github.com/willfinnigan/kinetics',
download_url = 'https://github.com/willfinnigan/kinetics/archive/1.4.5.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'],
)