-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
72 lines (70 loc) · 2.09 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
from setuptools import setup, find_namespace_packages
with open("README.md") as f:
long_description = f.read()
setup(
name="blr",
author="Tobias Frick, Pontus Höjer",
url="https://github.com/TobiasFrick/BLR/",
description="Pipeline for analysis of linked reads",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
python_requires=">=3.6",
install_requires=[
"pysam",
"dnaio",
"tqdm",
"pandas",
"numpy",
"matplotlib",
"ruamel.yaml",
"snakemake",
"importlib_resources; python_version<'3.7'",
"dataclasses; python_version<'3.7'",
"multiqc>=1.10,<1.12"
],
extras_require={
"dev": ["flake8", "pytest"],
},
package_dir={"": "src"},
packages=find_namespace_packages("src"),
package_data={
"blr": [
"Snakefile",
"rules/*.smk",
"config.schema.yaml",
"blr.yaml",
"multiqc_config.yaml",
"naibr.config",
"envs/*.yml",
"run_anew.smk",
]
},
entry_points={
"console_scripts": [
"blr = blr.__main__:main"
],
"multiqc.modules.v1": [
"stats = multiqc_blr.modules.stats:MultiqcModule",
"hapcut2 = multiqc_blr.modules.hapcut2:MultiqcModule",
"whatshap = multiqc_blr.modules.whatshap:MultiqcModule",
],
"multiqc.cli_options.v1": [
"disable_plugin = multiqc_blr.cli:disable_plugin"
],
"multiqc.hooks.v1": [
"before_config = multiqc_blr.multiqc_blr:before_config",
"execution_start = multiqc_blr.multiqc_blr:execution_start"
],
"multiqc.templates.v1": [
"blr = multiqc_blr.templates.blr"
]
},
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
]
)