-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
36 lines (33 loc) · 869 Bytes
/
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
#!/usr/bin/env python
"""
MultiQC plugin to display custom pictures
"""
from setuptools import setup, find_packages
version = '0.1'
setup(
name = 'custom_images',
version = version,
author = 'Cervin Guyomar',
author_email = '[email protected]',
description = "",
long_description = __doc__,
keywords = 'bioinformatics',
url = '',
download_url = '',
license = '',
packages = find_packages(),
include_package_data = True,
install_requires = [
'multiqc'
],
entry_points = {
'multiqc.modules.v1': [
'custom_images = custom_images_mqc_plugin.modules.custom_images:MultiqcModule',
],
'multiqc.hooks.v1': [
'execution_start = custom_images_mqc_plugin.custom_code:custom_images_mqc_plugin_execution_start'
]
},
classifiers = [
],
)