-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
33 lines (30 loc) · 1.27 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
# splicekit
from setuptools import setup
from setuptools import find_packages
with open("README.md", "r") as fh:
long_desc = fh.read()
long_desc = "\n".join(long_desc.split("\n")[1:])
setup(
name='splicekit',
version = open("splicekit/version", "rt").readlines()[0].replace("\n", "").replace("\r", ""),
packages=find_packages(),
description='splicekit: comprehensive toolkit for splicing analysis from short-read RNA-seq',
long_description = long_desc,
long_description_content_type = "text/markdown",
classifiers=[
'Programming Language :: Python :: 3',
],
zip_safe=False,
author='Roche, PMDA Spliceosome team',
entry_points={
'console_scripts': ['splicekit=splicekit:main', 'splicecompare=splicekit:splicecompare']
},
author_email='[email protected]',
url='https://github.com/bedapub/splicekit',
keywords=['splicekit', 'splicing', 'transcriptomics', 'bioinformatics'],
include_package_data=True,
package_data={
'splicekit': ['folders.setup', 'splicekit.config.template', 'version', 'core/comps_edgeR.R'],
},
install_requires=["levenshtein", "logomaker", "plotly", "python-dateutil>=2.8.2", "pybio", "scanRBP", "pysam", "numpy>=1.20", "psutil", "bs4", "requests", "rangehttpserver"],
)