-
Notifications
You must be signed in to change notification settings - Fork 86
/
Copy pathpyproject.toml
88 lines (78 loc) · 2.13 KB
/
pyproject.toml
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
79
80
81
82
83
84
85
86
87
88
[build-system]
requires = ["setuptools >= 61.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "snakePipes"
description = 'Snakemake workflows and wrappers for NGS data processing from the MPI-IE'
readme = "README.md"
version = "3.1.0"
keywords = [
"DNAmapping",
"ChIPSeq",
"mRNAseq",
"ncRNAseq",
"ATACseq",
"scRNAseq",
"WGBS / Bisulfite seq",
"epigenetics workflows",
"Illumina"
]
authors = [
{name = "Bioinfo-Core MPI-IE"}
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
requires-python = ">= 3.11"
dependencies = [
"snakemake >= 8",
"pandas",
"thefuzz",
"pyyaml >= 5.1",
"snakemake-executor-plugin-cluster-generic >= 1.0.9",
"graphviz"
]
[project.optional-dependencies]
actions = [
"pytest",
"ruff",
"ruamel.yaml",
"pytest-xdist"
]
docs = [
"sphinx >= 7.1.2",
"sphinx-rtd-theme >= 2.0.0",
"readthedocs-sphinx-search >= 0.3.2",
"sphinx-argparse >= 0.4.0",
"mock==5.1.0"
]
build = [
"build"
]
[tool.setuptools.package-data]
snakePipes = ["**/*.yaml", "**/*.R", "**/*.Rmd", "**/*snakefile", "**/*Snakefile", "**/*sh"]
[project.scripts]
ATACseq = "snakePipes.workflows.ATACseq.ATACseq:main"
ChIPseq = "snakePipes.workflows.ChIPseq.ChIPseq:main"
createIndices = "snakePipes.workflows.createIndices.createIndices:main"
DNAmapping = "snakePipes.workflows.DNAmapping.DNAmapping:main"
HiC = "snakePipes.workflows.HiC.HiC:main"
makePairs = "snakePipes.workflows.makePairs.makePairs:main"
mRNAseq = "snakePipes.workflows.mRNAseq.mRNAseq:main"
ncRNAseq = "snakePipes.workflows.ncRNAseq.ncRNAseq:main"
preprocessing = "snakePipes.workflows.preprocessing.preprocessing:main"
scRNAseq = "snakePipes.workflows.scRNAseq.scRNAseq:main"
WGBS = "snakePipes.workflows.WGBS.WGBS:main"
snakePipes = "snakePipes.snakePipes:main"
[tool.ruff]
exclude = [
"build"
]
lint.select = ["E", "F", "W", "B"]
lint.ignore = [
"E722", # bare excepts
"E501", # line length
"B006", # Do not use mutable data structures for argument defaults
]