-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (35 loc) · 1018 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
37
38
39
#!/usr/bin/env python3
"""
A MultiQC plugin for downstream analysis of NPM data
"""
from setuptools import setup, find_packages
version = '0.1'
setup(
name='multiqc_npm',
version=version,
author='Mar Gonzalez-Porta',
author_email='[email protected]',
description="MultiQC plugin for NPM",
long_description=__doc__,
keywords='bioinformatics',
url='https://github.com/c-BIG/MultiQC_NPM',
download_url='https://github.com/c-BIG/MultiQC_NPM/releases',
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=[
'multiqc',
'pandas'
],
entry_points={
'multiqc.modules.v1': [
'multiqc_npm = multiqc_npm.modules.npm_extra_metrics:NPMExtraMetrics'
],
'multiqc.cli_options.v1': [
'enable-npm-plugin = multiqc_npm.cli:enable_plugin'
],
'multiqc.hooks.v1': [
'before_config = multiqc_npm.hooks:before_config'
]
}
)