-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathsetup.py
More file actions
25 lines (23 loc) · 732 Bytes
/
setup.py
File metadata and controls
25 lines (23 loc) · 732 Bytes
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
setup(
name = "RSeQC",
version = "2.6.4",
url = "https://github.com/MonashBioinformaticsPlatform/RSeQC",
license = "GPLv2",
author = "kizza_a",
author_email ="kirill.tsyganov@monash.edu",
description = "RNAseq QCs suite",
packages=find_packages(exclude=['test']),
zip_safe=False
keywords = 'RNA-seq, RNAseq, QC, metrics',
scripts = ['scripts/rseqc'],
install_requires = ['pysam',
'bx-python'
],
)
#setup_requires=['numpy'],
#platforms = ['Linux','MacOS'],
#classifiers=[
# "Development Status :: 3 - Alpha",
# "Topic :: Utilities",
# "License :: OSI Approved :: BSD License",