StarRailDamageCal/pyproject.toml

70 lines
1.3 KiB
TOML
Raw Normal View History

2023-11-15 13:36:55 +00:00
[project]
name = "starrail_damage_cal"
2024-09-18 08:04:17 +00:00
version = "1.9.5"
2023-11-15 13:36:55 +00:00
description = "For StarRail Role Damage Cal"
authors = [
{name = "qwerdvd", email = "105906879+qwerdvd@users.noreply.github.com"},
]
dependencies = [
2024-04-27 09:10:31 +00:00
"msgspec>=0.18.6",
"httpx>=0.27.0",
2023-11-15 13:36:55 +00:00
]
2024-02-29 06:44:19 +00:00
repository = "https://github.com/baiqwerdvd/StarRailDamageCal"
2023-11-15 13:36:55 +00:00
requires-python = ">=3.8"
readme = "README.md"
license = {text = "MIT"}
packages = [{ include = "starrail_damage_cal" }]
[tool.ruff]
select = ["ALL"]
ignore = [
"E402",
"B008",
"F403",
"F405",
"RET505",
"N816",
"N815",
"ANN101",
"N806",
"FA100",
"PLR",
"C901",
"N803",
"N802",
"ANN",
"ERA001",
"E501",
"D",
"N999",
"ARG",
"COM812",
"N801",
2024-09-17 16:28:39 +00:00
"ISC",
"TID252"
2023-11-15 13:36:55 +00:00
]
line-length = 88
target-version = "py38"
ignore-init-module-imports = true
[tool.pdm.dev-dependencies]
test = [
"pytest>=7.4.3",
"pytest-asyncio>=0.21.1",
"pytest-cov>=4.1.0",
]
lint = [
"ruff>=0.1.3",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pyright]
reportShadowedImports = false
pythonVersion = "3.8"
pythonPlatform = "All"
executionEnvironments = [{ root = "./starrail_damage_cal/" }]