-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
57 lines (51 loc) · 1.69 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
from setuptools import setup, find_packages
import os
requirements = [
'cobra',
'numpy',
'scipy',
'networkx>=2.1',
'python-libsbml',
]
try:
with open('README.rst') as handle:
description = handle.read()
except:
description = ''
datadir = os.path.join('metquest','example','data')
datafiles = [(d, [os.path.join(d,f) for f in files])
for d, folders, files in os.walk(datadir)]
setup(
name='metquest',
version='0.1.31',
packages=find_packages(),
project_urls={
'Source': 'https://github.com/RamanLab/metquest'
},
install_requires=requirements,
setup_requires=[],
scripts=['bin/metquest.sh'],
author='Aarthi Ravikrishnan',
author_email='[email protected]',
description='MetQuest: Enumerating all possible biosynthetic pathways in metabolic networks ',
long_description=description,
license='LGPL/GPL v2+',
keywords='metabolism biology graph-theory pathways',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU Lesser General Public License v2'
' or later (LGPLv2+)',
'License :: OSI Approved :: GNU General Public License v2'
' or later (GPLv2+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
platforms='GNU/Linux, Mac OS X >= 10.7, Microsoft Windows >= 7',
data_files = datafiles,
include_package_data = True
)