This repository was archived by the owner on Nov 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
66 lines (57 loc) · 1.92 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# -*- coding: UTF-8 -*-
__author__ = "Thibault Dayris"
__copyright__ = "Copyright 2019, Thibault Dayris"
__email__ = "thibault.dayris@gustaveroussy.fr"
__license__ = "GPLv3"
import sys
if sys.version_info < (3, 5):
raise ValueError("Python 3.5 is required.\n", file=sys.stderr)
try:
import setuptools
except ImportError:
raise ImportError("Please install setuptools.", file=sys.stderr)
requirements = [
"conda",
"datrie ==0.8.2",
"jinja2 ==2.11.2",
"flask ==1.1.2",
"pandas ==1.0.3",
"snakemake ==5.19.3",
"pytest ==5.4.2",
]
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="rna-count-salmon",
version="v1.9.1",
author="Thibault Dayris",
author_email="thibault.dayris@gustaveroussy.fr",
description="rna-count-salmon is a pipeline written with "
" Snakemake that quantifies your RNA-Seq reads "
"with Salmon, controls input quality with FastQC, "
"and gathers qualities with MultiQC.",
long_description=long_description,
long_description_content_type='text/markdown',
zip_safe=False,
license="GPLv3",
url="https://github.com/tdayris-perso/rna-count-salmon/wiki",
install_requires=requirements,
test_requires=requirements,
setup_requires=requirements,
packages=setuptools.find_packages(),
packages_data={
"snakemake_rules": setuptools.find_packages("rules", include="*.smk|py"),
"snakemake_scripts": setuptools.find_packages("scripts", include="*.py"),
"snakemake": ["Snakefile"]
},
include_package_data=True,
scripts=["rna-count-salmon.py"],
python_requires=">=3.7",
classifiers=[
"Environment :: Console",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Development Status :: 5 - Production/Stable"
]
)