-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (32 loc) · 939 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# coding utf8
import setuptools
from rnaseqtools.versions import get_versions
with open('README.md') as f:
LONG_DESCRIPTION = f.read()
setuptools.setup(
name="RNASeqTools",
version=get_versions(),
author="Yuxing Xu",
author_email="xuyuxing@mail.kib.ac.cn",
description="Some small tools to help with RNA-seq analysis",
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
url="https://github.com/SouthernCD/RNASeqTools",
entry_points={
"console_scripts": ["RNASeqTools = rnaseqtools.cli:main"]
},
packages=setuptools.find_packages(),
install_requires=[
"yxutil",
"yxseq",
"yxalign",
"taxontools",
"interlap>=0.2.6",
"numpy>=1.18.1",
"bcbio-gff>=0.6.6",
"biopython<=1.80",
"pyfaidx>=0.5.5.2",
],
include_package_data=True,
python_requires='>=3.5',
)