forked from zavolanlab/TECtool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (39 loc) · 1.25 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
39
40
41
42
import sys
from setuptools import setup
if sys.version_info < (3, 4):
sys.exit('Sorry, TECtool requires Python >= 3.4 (Tested with Python 3.6.2)')
requirements = [
"numpy>=0.13",
"scipy==1.5.4",
"htseq==0.13.5",
"pybedtools",
"pyfasta==0.5.2",
"scikit-learn==0.24.2",
"pandas==0.20.3",
"matplotlib==2.0.2",
"progress==1.3",
"pysam==0.19.0"
]
setup(
name='tectool',
version='0.4',
description="TECtool is a method that uses mRNA and 3’ end sequencing data to identify novel terminal exons.",
author="Foivos Gypas",
author_email='foivos.gypas@unibas.ch',
url='https://github.com/zavolanlab/TECtool.git',
packages=['tectool'],
package_dir={'tectool': 'tectool'},
include_package_data=True,
scripts=['scripts/tectool',
'scripts/tectool_add_novel_transcripts_to_gtf_file',
'scripts/tectool_create_mapping_lists',
'scripts/tectool_extract_terminal_exons',
'scripts/tectool_filter_gtf_by_transcript_support_level',
'scripts/tectool_quantify_split_reads',
'scripts/plot_novel_exons.R'],
install_requires=requirements,
keywords='tectool',
classifiers=[
'Programming Language :: Python :: 3.6',
]
)