deoversimplify

This commit is contained in:
MeexReay 2025-09-20 17:25:17 +03:00
parent 41943115ba
commit 5932aac00d
31 changed files with 498 additions and 517 deletions

View file

@ -16,7 +16,6 @@ license-files = ["LICENSE"]
dependencies = [
"pydub",
"pygame",
"requests", # ?????????
"pyautogui",
"inputs",
"pillow",
@ -41,3 +40,17 @@ requires = [
"setuptools >= 42"
]
build-backend = "setuptools.build_meta"
[tool.ruff]
line-length = 88
indent-width = 4
target-version = "py39"
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F"]
ignore = []
fixable = ["ALL"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"