forked from bcgsc/straglr
-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
38 lines (36 loc) · 1.04 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
import os
import sys
from setuptools import setup, find_packages
#sys.path.append(os.path.dirname(os.path.abspath(__file__)) + '/stragler')
from straglr import __version__
setup(
name='straglr',
version=__version__,
description='Straglr',
long_description='Short tandem repeat genotyping using long reads',
url='https://github.com/bcgsc/straglr.git',
author='Readman Chiu',
author_email='[email protected]',
license='BCCA',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.8',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Bio-Informatics',
],
packages=['straglr'],
install_requires = [
'pysam>=0.14.0',
'pybedtools>=0.9.0',
'numpy>=1.22.3',
'pathos>=0.2.3',
'scikit-learn>=1.1',
'scipy>=1.8.0',
'natsort'
],
entry_points ={
'console_scripts': [
'straglr-genotype=straglr.straglr_genotype:main'
]
}
)