forked from SegataLab/cmseq
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (24 loc) · 807 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
import setuptools
from setuptools.command.install import install
from io import open
import os
install_requires = ["numpy", "scipy", "pysam", "pandas", "biopython", "bcbio-gff"]
setuptools.setup(
name='CMSeq',
version='1.0.0',
author='Moreno Zolfo',
author_email='[email protected]',
url='http://github.com/SegataLab/cmseq/',
packages=setuptools.find_packages(),
entry_points={
'console_scripts': [
'breadth_depth.py = cmseq.breadth_depth:bd_from_file',
'consensus.py = cmseq.consensus:consensus_from_file',
'polymut.py = cmseq.polymut:polymut_from_file',
'poly.py = cmseq.poly:poly_from_file'
]
},
description='',
long_description=open('README.md').read(),
install_requires=install_requires
)