forked from AbeelLab/quanttb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
25 lines (22 loc) · 808 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
from setuptools import setup, find_packages
import sys
if sys.version_info[0] > 2:
raise Exception( "Invalid Python interpreter, must be 2.X")
setup(
name='quanttb',
version='0.1dev',
packages=find_packages(),
description='Quantification of mixed TB infections',
license='GNU GENERAL PUBLIC LICENSE',
long_description=open('README.md').read(),
install_requires=[
'numpy==1.14.5', 'subprocess32==3.5.2', 'scipy==1.1.0'],
package_dir={'quanttb': 'quanttb'},
package_data={'quanttb': ['data/*']},
#include_package_data = True,
#scripts=['scripts/classify.py', 'scripts/runnucmer.py', 'scripts/quanttb.py'],
entry_points={
'console_scripts': [
'quanttb = quanttb.scripts.quanttb:main'
]},
)