forked from snakemake/snakemake
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
72 lines (63 loc) · 2.22 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
# -*- coding: UTF-8 -*-
from __future__ import print_function
__author__ = "Johannes Köster"
__copyright__ = "Copyright 2015, Johannes Köster"
__email__ = "[email protected]"
__license__ = "MIT"
import sys
import versioneer
if sys.version_info < (3, 5):
print("At least Python 3.5 is required.\n", file=sys.stderr)
exit(1)
try:
from setuptools import setup
except ImportError:
print("Please install setuptools before installing snakemake.", file=sys.stderr)
exit(1)
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.",
zip_safe=False,
license="MIT",
url="https://snakemake.readthedocs.io",
packages=["snakemake", "snakemake.remote", "snakemake.report", "snakemake.caching", "snakemake.deployment"],
entry_points={
"console_scripts": [
"snakemake = snakemake:main",
"snakemake-bash-completion = snakemake:bash_completion",
]
},
package_data={"": ["*.css", "*.sh", "*.html"]},
install_requires=[
"wrapt",
"requests",
"ratelimiter",
"pyyaml",
"configargparse",
"appdirs",
"datrie",
"jsonschema",
"docutils",
"gitpython",
"psutil",
"nbformat"
],
extras_require={"reports": ["jinja2", "networkx", "pygments", "pygraphviz"]},
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3.5",
"Topic :: Scientific/Engineering :: Bio-Informatics",
],
)