-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·43 lines (40 loc) · 1.5 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
#!/usr/bin/env python
"""
MultiQC_SAV is a plugin for MultiQC, leveraging the [InterOp python API](https://github.com/Illumina/interop)
to generate the most used tables and graphs from the Illumina SAV
"""
from setuptools import setup, find_packages
version = "0.0.3"
setup(
name="multiqc_sav",
version=version,
author="Matthias De Smet",
author_email="11850640+matthdsm@users.noreply.github.com",
description="MultiQC plugin for Illumina SAV Graphs and tables",
long_description=__doc__,
keywords="bioinformatics",
url="https://github.com/MultiQC/MultiQC_SAV",
license="MIT",
packages=find_packages(),
include_package_data=True,
install_requires=["interop>=1.1.23", "multiqc>=1.10", "pandas"],
entry_points={
"multiqc.hooks.v1": ["config_loaded = multiqc_sav.multiqc_sav:update_config",],
"multiqc.modules.v1": ["SAV = multiqc_sav.modules.sav:SAV",],
},
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Topic :: Scientific/Engineering :: Visualization",
],
)