-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (45 loc) · 1.66 KB
/
setup.py
File metadata and controls
49 lines (45 loc) · 1.66 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
from setuptools import setup, find_packages
from os import path
try:
from jupyterpip import cmdclass
except:
import pip
import importlib
pip.main(['install', 'jupyter-pip'])
cmdclass = importlib.import_module('jupyterpip').cmdclass
here = path.abspath(path.dirname(__file__))
# Get the long description from the relevant file
with open(path.join(here, 'README.rst')) as f:
long_description = f.read()
packages = find_packages()
setup(
name='PyscesToolbox',
version='0.8.9',
packages=packages,
url='https://github.com/PySCeS/PyscesToolbox',
download_url='http://github.com/PySCeS/PyscesToolbox/archive/0.8.9.tar.gz',
license='BSD-3-Clause',
author='Carl Christensen',
author_email='carldc@sun.ac.za',
description='A set of metabolic model analysis tools for PySCeS.',
long_description=long_description,
install_requires=['IPython>=4.0.0',
'numpy',
'sympy',
'pysces',
'matplotlib',
'numpydoc',
'jupyter-pip',
'networkx',
'jupyter',
'pandas'
],
package_data={'d3networkx_psctb': ['widget.js'],},
keywords=['metabolism','metabolic control analysis','modelling'],
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2.7'],
cmdclass=cmdclass('d3networkx_psctb'),
)