-
Notifications
You must be signed in to change notification settings - Fork 19
/
setup.py
31 lines (30 loc) · 878 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
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name="READemption",
version="2.0.4",
packages=["reademptionlib", "tests"],
author="Konrad U. Förstner, Till Sauerwein",
author_email="[email protected]",
description="A RNA-Seq Analysis Pipeline",
url="",
install_requires=[
"biopython >= 1.79",
"matplotlib >= 3.5.2",
"pandas >= 1.4.3",
"pysam >= 0.19.1",
"seaborn >= 0.11.2",
"sphinx-argparse >=0.2.5"
],
scripts=["bin/reademption"],
license="MIT License",
long_description=open("README.rst").read(),
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
)