-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
25 lines (24 loc) · 928 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
from setuptools import setup
import numpy as np
from distutils.extension import Extension
setup(
name='ecmtool',
version='0.1.12',
packages=['ecmtool'],
install_requires=['numpy',
'scipy',
'sympy',
'python-libsbml',
'cbmpy',
'psutil',
'scikit-learn'],
package_dir={'ecmtool': 'ecmtool'},
package_data={'ecmtool': ['_bglu_dense.cpython-310-x86_64-linux-gnu.so', 'ecmtool/polco', 'ecmtool/efmtool', 'ecmtool/redund']},
include_dirs=[np.get_include()],
url='https://github.com/SystemsBioinformatics/ecmtool',
license='MIT',
author='Tom Clement, Erik Baalhuis, Daan de Groot',
author_email='[email protected]',
description='Calculates elementary conversion modes (Urbanczik & Wagner, 2005) of metabolic networks.',
include_package_data=True
)