-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·76 lines (66 loc) · 1.63 KB
/
Copy pathpyproject.toml
File metadata and controls
executable file
·76 lines (66 loc) · 1.63 KB
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
[build-system]
requires = ["setuptools>=61.0", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "ATACofthesnake"
dynamic = ["version"]
description = "ATACofthesnake"
readme = "README.md"
license = { file = "LICENSE" }
authors = [
{ name = "WardDeb", email = "w@rddeboutte.com" }
]
keywords = ["ATAC", "differential accessibility", "motifs", "time-course analysis"]
urls = { Homepage = "https://www.github.com/maxplanck-ie/ATACofthesnake" }
requires-python = ">=3.12"
dependencies = [
"seaborn >= 0.12.0",
"pandas >= 2",
"rich >= 12.6.0",
"snakemake >= 9.0.0",
"click >= 8.0.0",
"scikit-learn >= 1.8.0",
"formulaic >= 1.2.1",
"statsmodels >= 0.14.6",
]
[project.optional-dependencies]
dev = [
"ruff",
"ty",
"pytest",
"pip",
"build",
"twine",
]
docs = [
"sphinx",
"sphinx-book-theme",
"sphinx-click",
]
[project.scripts]
ATAC = "aos.atac:main"
ATAC_example = "aos.example:download_example"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools_scm]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.smk", "*.yml", "*.R"]
[tool.ty.src]
exclude = [
"src/aos/tests/*",
"src/aos/rules/scripts/*py",
]
[tool.ruff.lint.per-file-ignores]
"src/aos/rules/scripts/*py" = ["F821"]
[tool.pixi.workspace]
channels = ["conda-forge", "bioconda"]
platforms = ["linux-64", "osx-arm64", "osx-64", "win-64"]
[tool.pixi.pypi-dependencies]
ATACofthesnake = { path = ".", editable = true, extras = ["dev", "docs"] }
[tool.pixi.tasks]
ty = "ty check"
ruff = "ruff check ."
test = "pytest"
doc = "sphinx-build -b html docs/ docs/_build/html"