-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·31 lines (27 loc) · 952 Bytes
/
Copy pathsetup.py
File metadata and controls
executable file
·31 lines (27 loc) · 952 Bytes
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
#!/usr/bin/env python
from setuptools import setup, find_packages
html_files = ["multiqc_plugins/templates/custom/includes.html"]
js_files = \
["multiqc_plugins/templates/custom/assets/js/highcharts-more.v5.0.6.js"]
setup(
name = "multiqc_plugins",
version = "0.1",
author = "nourdine bah",
author_email = "nourdine.bah@crick.ac.uk",
description = "MultiQC plugins for special metrics",
packages = find_packages(),
include_package_data = True,
install_requires = ["multiqc>=1.5"],
data_files=[("html", html_files), ("js", js_files)],
entry_points = {
"multiqc.modules.v1": [
"tss = multiqc_plugins.modules.tss:MultiqcModule",
"qc_genes = multiqc_plugins.modules.qc_genes:MultiqcModule",
"chrom = multiqc_plugins.modules.chrom:MultiqcModule",
"transcripts = multiqc_plugins.modules.transcripts:MultiqcModule"
],
"multiqc.templates.v1": [
"custom = multiqc_plugins.templates.custom"
]
}
)