-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
78 lines (72 loc) · 2.69 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
69
70
71
72
73
74
75
76
77
78
#!/usr/bin/env python
"""
pmultiqc plugin for MultiQC, showing the pipeline result with MultiQC framework.
For more information about MultiQC, see http://multiqc.info
"""
from setuptools import setup, find_packages
version = '0.0.25'
def readme():
with open('README.md', encoding="utf-8") as f:
return f.read()
setup(
name='pmultiqc',
version=version,
description='Python package for quality control of proteomics datasets, based on multiqc package',
author='Chengxin Dai, Yasset Perez-Riverol',
author_email='[email protected], [email protected]',
long_description=readme(),
long_description_content_type='text/markdown',
keywords='Proteomics, Label-free, quality control, MultiQC',
url='https://github.com/bigbio/pmultiqc/',
download_url='https://github.com/bigbio/pmultiqc/',
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=[
'lxml',
'multiqc==1.23',
'pandas',
'pyteomics',
'sdrf-pipelines >= 0.0.28',
'numpy == 1.24.3',
'pyopenms'
],
entry_points={
'multiqc.modules.v1': [
'quantms = pmultiqc.modules.quantms:QuantMSModule'
],
'multiqc.cli_options.v1': [
'disable_plugin = pmultiqc.cli:disable_plugin',
'pmultiqc_version = pmultiqc.cli:pmultiqc_version',
'raw = pmultiqc.cli:raw',
'condition = pmultiqc.cli:condition',
'remove_decoy = pmultiqc.cli:remove_decoy',
'decoy_affix = pmultiqc.cli:decoy_affix',
'contaminant_affix = pmultiqc.cli:contaminant_affix',
'quantification_method = pmultiqc.cli:quantification_method',
'disable_table = pmultiqc.cli:disable_table',
'ignored_idxml = pmultiqc.cli:ignored_idxml',
'affix_type = pmultiqc.cli:affix_type',
'mzid_plugin = pmultiqc.cli:mzid_plugin'
],
'multiqc.hooks.v1': [
'execution_start = pmultiqc.main:pmultiqc_plugin_execution_start'
]
},
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',
],
)