forked from philres/straglr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.03 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
from setuptools import setup
from straglr import __version__
##remove postfix here because setuptools does not like it
version = __version__.split('-')[0]
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.22.1',
'pybedtools==0.10.0',
'numpy==1.26.4',
'pathos==0.3.3',
'scikit-learn==1.5.2',
'scipy==1.14.1',
'natsort==8.4.0'
],
entry_points ={
'console_scripts': [
'straglr-genotype=straglr.straglr_genotype:main'
]
}
)