-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
40 lines (37 loc) · 1.12 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
# -*- coding: utf-8 -*-
from distutils.core import setup
from setuptools import find_packages
classifiers = """
Development Status :: 3 - Alpha
Environment :: Console
License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Intended Audience :: Science/Research
Topic :: Scientific/Engineering
Topic :: Scientific/Engineering :: Bio-Informatics
Programming Language :: Python :: 3.7
Operating System :: POSIX :: Linux
""".strip().split('\n')
setup(
name='COSMO',
version='0.1.0',
packages=find_packages(exclude=['tests']),
url='https://github.com/SANBI-SA/COSMO',
license='GPLv3',
author='Hocine Bendou',
author_email='hocine@sanbi.ac.za',
description='Tool to detect operons (relative to M. tuberculosis H37Rv) using gene expression levels.',
keywords='Mycobacterium tuberculosis bioinformatics',
classifiers=classifiers,
package_dir={'COSMO': 'COSMO'},
install_requires=[
'pysam>=0.15.0',
],
extras_require={
'test': ['pytest>=4.3.1'],
},
entry_points={
'console_scripts': [
'COSMO = operon.user_input:main',
]
}
)