chore(repo): formatting
This commit is contained in:
parent
72dcc96fea
commit
d649ca0f02
1 changed files with 68 additions and 68 deletions
136
pyproject.toml
136
pyproject.toml
|
@ -7,29 +7,29 @@ license = { file = "LICENSE" }
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.11"
|
requires-python = ">=3.11"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"aiosqlite>=0.20.0",
|
"aiosqlite>=0.20.0",
|
||||||
"beautifulsoup4>=4.12.3",
|
"beautifulsoup4>=4.12.3",
|
||||||
"colorthief>=0.2.1",
|
"colorthief>=0.2.1",
|
||||||
"markdownify>=0.14.1",
|
"markdownify>=0.14.1",
|
||||||
"numpy>=2.2.2",
|
"numpy>=2.2.2",
|
||||||
"phx-class-registry>=5.1.1",
|
"phx-class-registry>=5.1.1",
|
||||||
"pillow>=10.4.0",
|
"pillow>=10.4.0",
|
||||||
"pip>=25.0",
|
"pip>=25.0",
|
||||||
"py-dactyl",
|
"py-dactyl",
|
||||||
"pydantic>=2.10.6",
|
"pydantic>=2.10.6",
|
||||||
"red-discordbot>=3.5.14",
|
"red-discordbot>=3.5.14",
|
||||||
"watchdog>=6.0.0",
|
"watchdog>=6.0.0",
|
||||||
"websockets>=14.2",
|
"websockets>=14.2",
|
||||||
]
|
]
|
||||||
|
|
||||||
[dependency-groups]
|
[dependency-groups]
|
||||||
documentation = [
|
documentation = [
|
||||||
"mkdocs>=1.6.1",
|
"mkdocs>=1.6.1",
|
||||||
"mkdocs-git-authors-plugin>=0.9.2",
|
"mkdocs-git-authors-plugin>=0.9.2",
|
||||||
"mkdocs-git-revision-date-localized-plugin>=1.3.0",
|
"mkdocs-git-revision-date-localized-plugin>=1.3.0",
|
||||||
"mkdocs-material[imaging]>=9.5.50",
|
"mkdocs-material[imaging]>=9.5.50",
|
||||||
"mkdocs-redirects>=1.2.2",
|
"mkdocs-redirects>=1.2.2",
|
||||||
"mkdocstrings[python]>=0.27.0",
|
"mkdocstrings[python]>=0.27.0",
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.uv]
|
[tool.uv]
|
||||||
|
@ -45,32 +45,32 @@ reportAttributeAccessIssue = false # disabled because `commands.group.command` i
|
||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
# Exclude a variety of commonly ignored directories.
|
# Exclude a variety of commonly ignored directories.
|
||||||
exclude = [
|
exclude = [
|
||||||
".bzr",
|
".bzr",
|
||||||
".direnv",
|
".direnv",
|
||||||
".eggs",
|
".eggs",
|
||||||
".git",
|
".git",
|
||||||
".git-rewrite",
|
".git-rewrite",
|
||||||
".hg",
|
".hg",
|
||||||
".ipynb_checkpoints",
|
".ipynb_checkpoints",
|
||||||
".mypy_cache",
|
".mypy_cache",
|
||||||
".nox",
|
".nox",
|
||||||
".pants.d",
|
".pants.d",
|
||||||
".pyenv",
|
".pyenv",
|
||||||
".pytest_cache",
|
".pytest_cache",
|
||||||
".pytype",
|
".pytype",
|
||||||
".ruff_cache",
|
".ruff_cache",
|
||||||
".svn",
|
".svn",
|
||||||
".tox",
|
".tox",
|
||||||
".venv",
|
".venv",
|
||||||
".vscode",
|
".vscode",
|
||||||
"__pypackages__",
|
"__pypackages__",
|
||||||
"_build",
|
"_build",
|
||||||
"buck-out",
|
"buck-out",
|
||||||
"build",
|
"build",
|
||||||
"dist",
|
"dist",
|
||||||
"node_modules",
|
"node_modules",
|
||||||
"site-packages",
|
"site-packages",
|
||||||
"venv",
|
"venv",
|
||||||
]
|
]
|
||||||
|
|
||||||
# Same as Black.
|
# Same as Black.
|
||||||
|
@ -85,29 +85,29 @@ target-version = "py311"
|
||||||
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
|
# Unlike Flake8, Ruff doesn't enable pycodestyle warnings (`W`) or
|
||||||
# McCabe complexity (`C901`) by default.
|
# McCabe complexity (`C901`) by default.
|
||||||
select = [
|
select = [
|
||||||
"I",
|
"I",
|
||||||
"N",
|
"N",
|
||||||
"F",
|
"F",
|
||||||
"W",
|
"W",
|
||||||
"E",
|
"E",
|
||||||
"G",
|
"G",
|
||||||
"A",
|
"A",
|
||||||
"COM",
|
"COM",
|
||||||
"INP",
|
"INP",
|
||||||
"T20",
|
"T20",
|
||||||
"PLC",
|
"PLC",
|
||||||
"PLE",
|
"PLE",
|
||||||
"PLW",
|
"PLW",
|
||||||
"PLR",
|
"PLR",
|
||||||
"LOG",
|
"LOG",
|
||||||
"SLF",
|
"SLF",
|
||||||
"ERA",
|
"ERA",
|
||||||
"FIX",
|
"FIX",
|
||||||
"PERF",
|
"PERF",
|
||||||
"C4",
|
"C4",
|
||||||
"EM",
|
"EM",
|
||||||
"RET",
|
"RET",
|
||||||
"RSE",
|
"RSE",
|
||||||
]
|
]
|
||||||
ignore = ["PLR0911", "PLR0912", "PLR0915", "PLR2004", "PLR0913", "EM101"]
|
ignore = ["PLR0911", "PLR0912", "PLR0915", "PLR2004", "PLR0913", "EM101"]
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue