forked from NationalGenomicsInfrastructure/MultiQC_NGI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·68 lines (64 loc) · 2.35 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#!/usr/bin/env python
"""
MultiQC_NGI is a plugin for MultiQC, providing additional tools which are
specific to the National Genomics Infrastructure at the Science for Life
Laboratory in Stockholm, Sweden.
For more information about NGI, see http://www.scilifelab.se/platforms/ngi/
For more information about MultiQC, see http://multiqc.info
"""
from setuptools import setup, find_packages
version = '0.6.3'
setup(
name = 'multiqc_ngi',
version = version,
author = 'Phil Ewels',
author_email = 'phil.ewels@scilifelab.se',
description = "MultiQC plugin for the National Genomics Infrastructure @ SciLifeLab Sweden",
long_description = __doc__,
keywords = 'bioinformatics',
url = 'https://github.com/ewels/MultiQC_NGI',
download_url = 'https://github.com/ewels/MultiQC_NGI/releases',
license = 'MIT',
packages = find_packages(),
include_package_data = True,
install_requires = [
'couchdb',
'simplejson',
'pyyaml',
'requests',
'multiqc'
],
entry_points = {
'multiqc.templates.v1': [
'ngi = multiqc_ngi.templates.ngi',
'genstat = multiqc_ngi.templates.genstat',
],
'multiqc.cli_options.v1': [
'disable = multiqc_ngi.cli:disable_ngi',
'project = multiqc_ngi.cli:pid_option',
'push_statusdb = multiqc_ngi.cli:push_flag',
'test_db = multiqc_ngi.cli:test_db'
],
'multiqc.hooks.v1': [
'before_config = multiqc_ngi.multiqc_ngi:multiqc_ngi_config',
'before_report_generation = multiqc_ngi.multiqc_ngi:ngi_metadata',
'execution_finish = multiqc_ngi.multiqc_ngi:ngi_after_execution_finish'
]
},
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',
'Programming Language :: JavaScript',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Visualization',
],
)