forked from adrlar/CanSNPer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 709 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
import sys
if sys.version_info[:2] != (2, 7):
sys.exit('Sorry, only Python 2.7 is supported')
setup(
name="CanSNPer",
version="1.0.8",
url="https://github.com/adrlar/CanSNPer",
description="CanSNPer: A toolkit for SNP-typing using NGS data.",
license="GPL'",
keywords="Bioinformatics SNP-typing sequence-data",
classifiers=[
'Development Status :: 5 - Alpha',
'License :: OSI Approved :: GPL',
'Programming Language :: Python :: 2.7'
],
install_requires=['numpy', 'ete2'],
packages=['CanSNPer'],
scripts=['CanSNPer/x2fa.py'],
entry_points={'console_scripts': ['CanSNPer=CanSNPer.__main__:main']})