https://github.com/vejnar/LabxPipe
Raw File
Tip revision: 5519892059f56f02c4e2da8490c50f98b08e592b authored by vejnar on 05 April 2023, 16:19:02 UTC
Add samtools_sort step
Tip revision: 5519892
pyproject.toml
[build-system]
requires = ["setuptools>=61", "setuptools_scm", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "labxpipe"
authors = [{name = "Charles E. Vejnar"}]
description = "Genomics pipelines"
readme = "README.md"
requires-python = ">=3.9"
license = {text = "Mozilla Public License 2.0 (MPL 2.0)"}
dependencies = [
    "labxdb-tools",
    "pyfnutils",
    "xlsxwriter",
    "zstandard",
]
dynamic = ["version"]

[project.urls]
homepage = "https://git.sr.ht/~vejnar/LabxPipe"

[project.scripts]
lxpipe = "labxpipe_scripts.lxpipe:main"

[tool.setuptools_scm]
back to top