-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (33 loc) · 805 Bytes
/
pyproject.toml
File metadata and controls
38 lines (33 loc) · 805 Bytes
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
[build-system]
requires = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "fab-commands"
version = "0.6.0"
description = "Shared Fabric commands for the snakemake-workflows repo"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"snakemake",
"fabric",
"python-fasthtml",
"monsterui",
"rich",
"pyyaml",
"uv",
"numpy",
"h5py",
"zarr",
"xarray-behave",
"pandas",
"snakemake-executor-plugin-slurm",
"etho_annotator@git+https://github.com/janclemenslab/etho_annotator",
]
[project.urls]
Repository = "https://github.com/janclemenslab/snakemake-workflows"
[project.scripts]
transfer = "fab_commands.transfer:main"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]