35 lines
781 B
TOML
35 lines
781 B
TOML
# https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=80"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
# dynamic = ["version"]
|
|
name = "arcaea-apk-assets"
|
|
description = "Your package description goes here."
|
|
version = "0.1.0a"
|
|
requires-python = ">=3.9"
|
|
authors = [
|
|
{name = "283375", email = "log_283375@163.com"},
|
|
]
|
|
readme = "README.md"
|
|
license = "GPL-3.0-or-later"
|
|
|
|
[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
|
|
]
|
|
ignore = [
|
|
"E501", # line-too-long
|
|
]
|