remove pyproject-fmt hook

reformat with EBT
This commit is contained in:
onyx-and-iris 2025-04-02 21:16:04 +01:00
parent ca0f6a8e9a
commit d07581593f
2 changed files with 85 additions and 47 deletions

View File

@ -5,8 +5,3 @@ repos:
- id: check-yaml - id: check-yaml
- id: end-of-file-fixer - id: end-of-file-fixer
- id: trailing-whitespace - id: trailing-whitespace
- repo: https://github.com/tox-dev/pyproject-fmt
rev: 'v2.5.0'
hooks:
- id: pyproject-fmt

View File

@ -1,16 +1,15 @@
[build-system] [build-system]
build-backend = "hatchling.build" build-backend = "hatchling.build"
requires = [ "hatchling" ] requires = ["hatchling"]
[project] [project]
name = "duckypad-twitch" name = "duckypad-twitch"
description = "DuckyPad macros for streaming software" description = "DuckyPad macros for streaming software"
readme = "README.md" readme = "README.md"
keywords = [ ] keywords = []
license = "MIT" license = "MIT"
authors.email = "code@onyxandiris.online" authors = [{ email = "code@onyxandiris.online", name = "onyx-and-iris" }]
authors.name = "onyx-and-iris"
requires-python = ">=3.12,<4.0" requires-python = ">=3.12,<4.0"
classifiers = [ classifiers = [
"Development Status :: 4 - Beta", "Development Status :: 4 - Beta",
@ -21,7 +20,7 @@ classifiers = [
"Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy", "Programming Language :: Python :: Implementation :: PyPy",
] ]
dynamic = [ "version" ] dynamic = ["version"]
dependencies = [ dependencies = [
"keyboard", "keyboard",
"obsws-python>=1.7", "obsws-python>=1.7",
@ -33,12 +32,14 @@ dependencies = [
"xair-api>=2.4.1", "xair-api>=2.4.1",
] ]
urls.Documentation = "https://github.com/unknown/duckypad-twitch#readme" [project.scripts]
urls.Issues = "https://github.com/unknown/duckypad-twitch/issues" duckypad-macros = "duckypad_twitch.macros:run"
urls.Source = "https://github.com/unknown/duckypad-twitch"
scripts.duckypad-macros = "duckypad_twitch.macros:run" [project.urls]
Documentation = "https://github.com/onyx-and-iris/duckypad-twitch#readme"
Issues = "https://github.com/onyx-and-iris/duckypad-twitch/issues"
Source = "https://github.com/onyx-and-iris/duckypad-twitch"
[tool.hatch.metadata] [tool.hatch.metadata]
allow-direct-references = true allow-direct-references = true
@ -47,32 +48,28 @@ allow-direct-references = true
path = "duckypad_twitch/__about__.py" path = "duckypad_twitch/__about__.py"
[tool.hatch.envs.default] [tool.hatch.envs.default]
dependencies = [ "coverage[toml]>=6.5", "pytest" ] dependencies = ["coverage[toml]>=6.5", "pytest"]
[tool.hatch.envs.default.scripts] [tool.hatch.envs.default.scripts]
test = "pytest {args:tests}" test = "pytest {args:tests}"
test-cov = "coverage run -m pytest {args:tests}" test-cov = "coverage run -m pytest {args:tests}"
cov-report = [ "- coverage combine", "coverage report" ] cov-report = ["- coverage combine", "coverage report"]
cov = [ "test-cov", "cov-report" ] cov = ["test-cov", "cov-report"]
[[tool.hatch.envs.all.matrix]] [[tool.hatch.envs.all.matrix]]
python = [ "3.12", "3.13" ] python = ["3.12", "3.13"]
[tool.hatch.envs.lint] [tool.hatch.envs.lint]
detached = true detached = true
dependencies = [ "black>=23.1.0", "mypy>=1.0.0", "ruff>=0.0.243" ] dependencies = ["black>=23.1.0", "mypy>=1.0.0", "ruff>=0.0.243"]
[tool.hatch.envs.lint.scripts] [tool.hatch.envs.lint.scripts]
typing = "mypy --install-types --non-interactive {args:duckypad_twitch tests}" typing = "mypy --install-types --non-interactive {args:duckypad_twitch tests}"
style = [ "ruff {args:.}", "black --check --diff {args:.}" ] style = ["ruff {args:.}", "black --check --diff {args:.}"]
fmt = [ "black {args:.}", "ruff --fix {args:.}", "style" ] fmt = ["black {args:.}", "ruff --fix {args:.}", "style"]
all = [ "style", "typing" ] all = ["style", "typing"]
[tool.ruff] [tool.ruff]
target-version = "py312"
line-length = 120
indent-width = 4
exclude = [ exclude = [
".bzr", ".bzr",
".direnv", ".direnv",
@ -96,32 +93,78 @@ exclude = [
"node_modules", "node_modules",
"venv", "venv",
] ]
format.indent-style = "space"
format.quote-style = "single" line-length = 120
format.line-ending = "auto" indent-width = 4
format.skip-magic-trailing-comma = false
format.docstring-code-line-length = "dynamic" # Assume Python 3.10
format.docstring-code-format = false target-version = "py312"
lint.select = [ "E4", "E7", "E9", "F" ]
lint.ignore = [ ] [tool.ruff.lint]
lint.per-file-ignores."__init__.py" = [ "E402", "F401" ] # Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
lint.per-file-ignores."tests/**/*" = [ "PLR2004", "S101", "TID252" ] # Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
lint.fixable = [ "ALL" ] # McCabe complexity (`C901`) by default.
lint.unfixable = [ ] select = ["E4", "E7", "E9", "F"]
lint.dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$" ignore = []
lint.mccabe.max-complexity = 10
isort.known-first-party = [ "duckypad_twitch" ] # Allow fix for all enabled rules (when `--fix`) is provided.
flake8-tidy-imports.ban-relative-imports = "all" fixable = ["ALL"]
unfixable = []
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.ruff.format]
# Unlike Black, use single quotes for strings.
quote-style = "single"
# Like Black, indent with spaces, rather than tabs.
indent-style = "space"
# Like Black, respect magic trailing commas.
skip-magic-trailing-comma = false
# Like Black, automatically detect the appropriate line ending.
line-ending = "auto"
# Enable auto-formatting of code examples in docstrings. Markdown,
# reStructuredText code/literal blocks and doctests are all supported.
#
# This is currently disabled by default, but it is planned for this
# to be opt-out in the future.
docstring-code-format = false
# Set the line length limit used when formatting code snippets in
# docstrings.
#
# This only has an effect when the `docstring-code-format` setting is
# enabled.
docstring-code-line-length = "dynamic"
[tool.ruff.lint.mccabe]
max-complexity = 10
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["E402", "F401"]
# Tests can use magic values, assertions, and relative imports
"tests/**/*" = ["PLR2004", "S101", "TID252"]
[tool.ruff.isort]
known-first-party = ["duckypad_twitch"]
[tool.ruff.flake8-tidy-imports]
ban-relative-imports = "all"
[tool.coverage.run] [tool.coverage.run]
source_pkgs = [ "duckypad_twitch", "tests" ] source_pkgs = ["duckypad_twitch", "tests"]
branch = true branch = true
parallel = true parallel = true
omit = [ "duckypad_twitch/__about__.py" ] omit = ["duckypad_twitch/__about__.py"]
[tool.coverage.paths] [tool.coverage.paths]
duckypad_twitch = [ "duckypad_twitch", "*/duckypad-twitch/duckypad_twitch" ] duckypad_twitch = ["duckypad_twitch", "*/duckypad-twitch/duckypad_twitch"]
tests = [ "tests", "*/duckypad-twitch/tests" ] tests = ["tests", "*/duckypad-twitch/tests"]
[tool.coverage.report] [tool.coverage.report]
exclude_lines = [ "no cov", "if __name__ == .__main__.:", "if TYPE_CHECKING:" ] exclude_lines = ["no cov", "if __name__ == .__main__.:", "if TYPE_CHECKING:"]