-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (41 loc) · 1.81 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (41 loc) · 1.81 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
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "snakemake-executor-plugin-spawn"
version = "0.2.0"
description = "Snakemake executor plugin that runs each job on an ephemeral EC2 instance via spore-host/spawn"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
authors = [{ name = "scttfrdmn" }]
keywords = ["snakemake", "workflow", "bioinformatics", "aws", "ec2", "spawn", "executor-plugin"]
dependencies = [
# The executor-plugin interface is the stable public contract; the base
# RemoteExecutor + CommonSettings/SubmittedJobInfo live here. 9.x is current.
"snakemake-interface-executor-plugins>=9.4.0,<10",
# snakemake provides the `python -m snakemake --mode remote` the node runs and
# the CLI the user drives with `--executor spawn`.
"snakemake>=9,<10",
]
[project.optional-dependencies]
# `pyyaml` is a test-only dependency: tests/test_ci_hygiene.py parses
# .github/dependabot.yml. It is imported unguarded there on purpose — a
# try/except import degrades to a skip, and a skipped wiring test reports green
# while asserting nothing.
dev = ["pytest>=7", "ruff>=0.5,<0.16", "mypy>=1.8", "pyyaml>=6"]
[project.urls]
Homepage = "https://github.com/spore-host/snakemake-executor-plugin-spawn"
Issues = "https://github.com/spore-host/spore-host/issues/405"
# NOTE: Snakemake discovers executor plugins by INSTALLED MODULE-NAME PREFIX
# (`snakemake_executor_plugin_*`), NOT via entry points — so there is no
# [project.entry-points] block and no console script. `snakemake --executor spawn`
# imports this package by name.
[tool.setuptools.packages.find]
include = ["snakemake_executor_plugin_spawn*"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true