-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (35 loc) · 961 Bytes
/
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
[tool.poetry]
name = "snakemake-staging"
version = "0.0.0"
description = ""
authors = ["Dan Foreman-Mackey <[email protected]>"]
readme = "README.md"
packages = [{ include = "snakemake_staging", from = "src" }]
[tool.poetry.dependencies]
python = ">=3.9"
snakemake = "*" # TODO(dfm): Figure out a minimum version
requests = "*"
[tool.poetry.group.test.dependencies]
pytest = "*"
flask = "*"
[tool.poetry-dynamic-versioning]
enable = true
vcs = "git"
style = "semver"
[tool.poetry-dynamic-versioning.substitution]
folders = [{ path = "src" }]
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"
[tool.black]
target-version = ["py38", "py39"]
line-length = 88
[tool.ruff]
line-length = 89
target-version = "py38"
select = ["F", "I", "E", "W", "YTT", "B", "Q", "PLE", "PLW"]
ignore = []
exclude = []
[tool.ruff.isort]
force-wrap-aliases = true
combine-as-imports = true