forked from snakemake/snakemake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
102 lines (97 loc) · 3.05 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
import os
import sys
from setuptools import setup
# ensure the current directory is on sys.path so versioneer can be imported
# when pip uses PEP 517/518 build rules.
# https://github.com/python-versioneer/python-versioneer/issues/193
sys.path.append(os.path.dirname(__file__))
import versioneer # noqa: E402
setup(
name="snakemake",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="Johannes Köster",
author_email="[email protected]",
description="Snakemake is a workflow management system that aims to reduce the complexity "
"of creating workflows by providing a fast and comfortable execution environment, "
"together with a clean and modern specification language in python style. "
"Snakemake workflows are essentially Python scripts extended by declarative "
"code to define rules. Rules describe how to create output files from input files.",
long_description_content_type="text/markdown",
zip_safe=False,
license="MIT",
url="https://snakemake.readthedocs.io",
project_urls={
"Source": "https://github.com/snakemake/snakemake",
},
packages=[
"snakemake",
"snakemake.remote",
"snakemake.report",
"snakemake.report.template",
"snakemake.report.template.components",
"snakemake.report.data",
"snakemake.common",
"snakemake.caching",
"snakemake.deployment",
"snakemake.linting",
"snakemake.executors",
"snakemake.unit_tests",
"snakemake.unit_tests.templates",
"snakemake.template_rendering",
],
entry_points={
"console_scripts": [
"snakemake = snakemake:main",
"snakemake-bash-completion = snakemake:bash_completion",
]
},
package_data={"": ["*.css", "*.sh", "*.html", "*.jinja2", "*.js", "*.svg"]},
python_requires=">=3.7",
install_requires=[
"wrapt",
"requests",
"ratelimiter",
"pyyaml",
"configargparse",
"appdirs",
"datrie",
"jsonschema",
"docutils",
"gitpython",
"psutil",
"nbformat",
"toposort",
"connection_pool >=0.0.3",
"pulp >=2.0",
"smart_open >=3.0",
"stopit",
"tabulate",
"yte >=1.0,<2.0",
"jinja2 >=3.0,<4.0",
"retry",
],
extras_require={
"reports": ["jinja2", "pygments"],
"messaging": ["slacker"],
"google-cloud": [
"oauth2client",
"google-crc32c",
"google-api-python-client",
"google-cloud-storage",
],
"pep": [
"peppy",
"eido",
],
},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.7",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
)