-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
61 lines (54 loc) · 1.78 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
57
58
59
60
61
# -*- coding: utf-8 -*-
from __future__ import absolute_import
from setuptools import setup, find_packages
import fastsl
def readme():
with open('README.rst') as file:
return file.read()
setup(
name='fastsl',
version=fastsl.__version__,
project_urls={
'Source': 'https://github.com/RamanLab/FastSL-py'
},
install_requires=[
'cobra',
'joblib',
'tqdm',
'lxml',
'Click'
],
python_requires='~=3.5',
setup_requires=['pytest-runner'],
tests_require=['pytest', 'tox'],
description=('FastSL-py is an efficient algorithm to identify '
'synthetic lethal gene/reaction sets in genome-scale '
'metabolic models.'),
long_description=readme(),
url='https://github.com/RamanLab/FastSL-py',
entry_points='''
[console_scripts]
fast-sl=fastsl.fastsl_cli:main
''',
author='Synchon Mandal, Karthik Raman',
author_email='[email protected]',
maintainer='Synchon Mandal',
maintainer_email='[email protected]',
license='GPL v3',
include_package_data=True,
zip_safe=False,
keywords=('synthetic-lethals flux-balance-analysis linear-programming '
'computational-systems-biology'),
packages=find_packages(),
platforms='GNU/Linux, macOS >= 10.7, Microsoft Windows >= 7',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Environment :: Console',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6'
]
)