who cares

This commit is contained in:
2025-07-05 14:27:26 +08:00
parent 830e480f6f
commit 155e8b9664
7 changed files with 99 additions and 17 deletions

View File

@ -8,27 +8,19 @@ build-backend = "setuptools.build_meta"
# dynamic = ["version"]
name = "arcaea-apk-assets"
description = "Your package description goes here."
version = "0.1.0a"
version = "0.1.0a.dev1"
requires-python = ">=3.9"
authors = [
{name = "283375", email = "log_283375@163.com"},
]
authors = [{ name = "283375", email = "log_283375@163.com" }]
readme = "README.md"
license = "GPL-3.0-or-later"
[project.urls]
Homepage = "https://github.com/283375/arcaea-apk-assets"
Issues = "https://github.com/283375/arcaea-apk-assets/issues"
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"I", # isort
"RET", # flake8-return
"EM", # flake8-errmsg
"CPY", # flake8-copyright
"RUF", # Ruff-specific rules
]
select = ["ALL"]
ignore = [
"E501", # line-too-long
"D",
"E501", # line-too-long
]