-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
39 lines (38 loc) · 1.38 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
from setuptools import setup, find_packages
setup(
name="multiqc_plugins",
version="1.3",
author="Krish Agarwal",
author_email="[email protected]",
description="MultiQC plugins for the Zavolan Lab \
@ University of Basel, Switzerland",
long_description=__doc__,
keywords="bioinformatics",
url="https://github.com/zavolanlab/multiqc-plugins",
download_url="https://github.com/zavolanlab/multiqc-plugins",
license="Apache 2.0",
packages=find_packages(),
include_package_data=True,
install_requires=["multiqc"],
entry_points={
"multiqc.modules.v1": [
"ALFA = modules.ALFA:MultiqcModule",
"tin-score = modules.tin_score:MultiqcModule",
"zpca = modules.zpca:MultiqcModule",
],
"multiqc.hooks.v1": ["execution_start = modules.hook:execution_start"],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
],
)