-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (38 loc) · 1.39 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
# coding: utf-8
from __future__ import absolute_import, division, print_function
__author__ = "Johannes Köster"
__copyright__ = "Copyright 2015, Johannes Köster, Liu lab"
__email__ = "[email protected]"
__license__ = "MIT"
import sys
try:
from setuptools import setup
except ImportError:
print("Could not load setuptools. Please install the setuptools package.", file=sys.stderr)
# load version info
exec(open("mageck_vispr/version.py").read())
setup(
name="mageck-vispr",
version=__version__,
author="Johannes Köster",
author_email="[email protected]",
description="MAGeCK-VISPR is a comprehensive quality control, analysis and "
"visualization pipeline for CRISPR/Cas9 screens.",
license="MIT",
url="https://bitbucket.org/johanneskoester/mageck-vispr",
packages=["mageck_vispr"],
include_package_data=True,
zip_safe=False,
install_requires=["jinja2"],
entry_points={"console_scripts": ["mageck-vispr = mageck_vispr.cli:main"]},
classifiers=[
"Development Status :: 4 - Beta",
#"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Bio-Informatics"
]
)