-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
51 lines (45 loc) · 1.18 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
[build-system]
requires = [
"setuptools >= 61.0",
"wheel",
"setuptools_scm[toml]>=6.2",
]
build-backend = "setuptools.build_meta"
[project]
name = "seqnado"
authors = [
{name = "Alastair Smith", email = "[email protected]"},
{name = "Catherine Chahrour", email = "[email protected]"}]
description = "Pipelines for genomics analysis"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "GNU GENERAL PUBLIC LICENSE Version 3"}
dynamic = ["version"]
dependencies = [
"click",
"cookiecutter",
"pandas",
"pandera",
"pulp<=2.9.0",
"pydantic",
"pyranges",
"pyyaml",
"seaborn",
"setuptools_scm",
"snakemake-wrapper-utils",
"snakemake>8,<9",
"snakemake-executor-plugin-slurm",
"tracknado",
"wget",
]
[project.scripts]
seqnado = "seqnado.cli:cli_pipeline"
seqnado-design = "seqnado.cli:cli_design"
seqnado-config = "seqnado.cli:cli_config"
[project.optional-dependencies]
#atac = ["rsbamtk @ git+https://github.com/alsmith151/rsbamtk.git"]
[tool.setuptools_scm]
write_to = "seqnado/_version.py"
local_scheme = "no-local-version"
[project.urls]
Homepage = "https://github.com/alsmith151/seqnado"