-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·55 lines (50 loc) · 1.75 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
#!/usr/bin/env python
"""
MultiQC_bcbio is a plugin for MultiQC, providing additional tools which are
specific to bcbio_nextgen.py pipeline.
For more information about bcbio_nextgen, see http://github.com/chapmanb/bcbio_nextgen
For more information about MultiQC, see http://multiqc.info
"""
from setuptools import setup, find_packages
version = '0.2.9'
setup(
name = 'multiqc_bcbio',
version = version,
author = 'Lorena Pantano, Brad Chapman, Vlad Saveliev, Phil Ewels, Rory Kirchner',
author_email = '[email protected]',
description = "MultiQC plugin for bcbio_nextgen pipeline",
long_description = __doc__,
keywords = 'bioinformatics',
url = 'https://github.com/MultiQC/MultiQC_bcbio',
download_url = 'https://github.com/MultiQC/MultiQC_bcbio/releases',
license = 'MIT',
packages = find_packages(),
include_package_data = True,
zip_safe=False,
install_requires = [
'multiqc>=1.0',
],
entry_points = {
'multiqc.modules.v1': [
'bcbio = multiqc_bcbio.bcbio:MultiqcModule',
],
'multiqc.hooks.v1': [
'before_config = multiqc_bcbio:multiqc_bcbio_config',
]
},
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'
]
)