-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (55 loc) · 1.73 KB
/
Copy pathpyproject.toml
File metadata and controls
66 lines (55 loc) · 1.73 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[project]
name = "wynntilsresolver"
version = "1.6.0"
description = "A simple resolver to analyze wynntils' encoded equipment in chat."
authors = [{ name = "FYWinds", email = "i@windis.cn" }]
dependencies = ["httpx==0.27.0", "typing-extensions>=4.12.2"]
requires-python = ">=3.8"
readme = "readme.md"
license = "MIT"
keywords = ["wynntils", "resolver", "wynncraft"]
classifiers = [
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.urls]
Homepage = "https://github.com/fywinds/WynntilsResolver"
Repository = "https://github.com/fywinds/WynntilsResolver"
Documentation = "https://github.com/fywinds/WynntilsResolver"
Changelog = "https://github.com/fywinds/WynntilsResolver"
[project.scripts]
wynntilsresolver = "wynntilsresolver.cli:app"
cli = "wynntilsresolver.cli:app"
[build-system]
requires = ["uv_build>=0.8.7,<0.9.0"]
build-backend = "uv_build"
[tool.uv.build-backend]
module-name = "wynntilsresolver"
module-root = ""
[project.optional-dependencies]
cli = ["rich>=14.3.4", "typer>=0.20.1"]
[dependency-groups]
dev = [
"wynntilsresolver[cli]",
"pytest==8.0.2",
"pytest-cov==4.1.0",
"pytest-xdist==3.5.0",
]
[tool.ruff]
line-length = 120
target-version = "py38"
exclude = ["temp/*"]
src = ["wynntilsresolver"]
[tool.ruff.lint]
select = ["W", "E", "F", "UP", "C4", "T10", "T20", "PYI", "PT", "Q"]
ignore = ["E402", "UP037", "PYI034"]
[tool.ruff.lint.pyupgrade]
keep-runtime-typing = true
[tool.pytest.ini_options]
addopts = "-n 4 --cov=wynntilsresolver --cov-report xml:cov.xml"
[tool.basedpyright]
pythonVersion = "3.8"
typeCheckingMode = "basic"