-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 1.11 KB
/
Copy pathpyproject.toml
File metadata and controls
38 lines (32 loc) · 1.11 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
[project]
name = "renpy-cue"
version = "0.1.0"
description = "Ren'Py mod: advanced marker/trigger/video/SFX cue system"
requires-python = ">=3.10"
readme = "README.md"
license = "MIT"
[tool.poetry]
packages = [{ include = "cue_lib" }]
[tool.poetry.group.dev.dependencies]
pytest = "^9.0"
coverage = "^7.0"
pyright = "^1.1"
ruff = "^0.16.4"
certifi = ">=2024.0.0"
[tool.ruff]
line-length = 120
[tool.ruff.format]
# Preserve the project's single-quote style; do not normalize quotes.
quote-style = "preserve"
# Don't let a source trailing comma force one-per-line expansion. This does
# NOT stop ruff from ADDING a trailing comma to a width-split def -- that is
# py3-only syntax (a comma after *args/**kwargs breaks Python 2.7 / Ren'Py
# 7.x), so such defs are wrapped in `# fmt: off` / `# fmt: on` and hand-
# written without the comma. bin/lint.sh check 4 catches new ones.
skip-magic-trailing-comma = true
[tool.ruff.lint.isort]
# Match skip-magic-trailing-comma; silences ruff's incompatibility warning.
split-on-trailing-comma = false
[build-system]
requires = ["poetry-core>=2.0.0"]
build-backend = "poetry.core.masonry.api"