forked from Galithil/MultiQC_Clarity
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·56 lines (51 loc) · 1.91 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
#!/usr/bin/env python
"""
MultiQC_Clarity is a plugin for MultiQC, providing access to data held in
the Illumina Genologics Clarity LIMS.
For more information about Clarity, see https://www.genologics.com/clarity-lims/
For more information about MultiQC, see http://multiqc.info
"""
from setuptools import setup, find_packages
version = '0.1'
setup(
name = 'multiqc_clarity',
version = version,
author = 'Denis Moreno',
author_email = 'denis.moreno@scilifelab.se',
description = "MultiQC plugin for interacting with Illumina Genologics Clarity LIMS",
long_description = __doc__,
keywords = 'bioinformatics',
url = 'https://github.com/Galithil/MultiQC_Clarity',
license = 'MIT',
packages = find_packages(),
include_package_data = True,
install_requires = [
'genologics',
'pyyaml'
],
entry_points = {
'multiqc.hooks.v1': [
'after_modules = multiqc_clarity.multiqc_clarity:MultiQC_clarity_metadata',
],
'multiqc.cli_options.v1': [
'disable_clarity = multiqc_clarity.cli:c_disable',
'clarity_skip_edit_snames = multiqc_clarity.cli:c_edit_patterns',
'clarity_project = multiqc_clarity.cli:c_pname'
]
},
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',
],
)