-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
53 lines (44 loc) · 1.47 KB
/
pyproject.toml
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
[project]
name = "wynntilsresolver"
version = "1.3.0"
description = "A simple resolver to analyze wynntils' encoded equipment in chat."
authors = [{ name = "FYWinds", email = "[email protected]" }]
dependencies = ["httpx==0.27.0"]
requires-python = ">=3.8"
readme = "readme.md"
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.license]
text = "MIT"
[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.optional-dependencies]
dev = ["ruff==0.3.0", "basedpyright==1.6.1"]
test = ["pytest==8.0.2", "pytest-cov==4.1.0", "pytest-xdist==3.5.0"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pdm.build]
includes = ["wynntilsresolver"]
excludes = ["temp"]
[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"]
[tool.ruff.lint.pyupgrade]
keep-runtime-typing = true
[tool.pytest.ini_options]
addopts = "-n 4 --cov=wynntilsresolver --cov-report xml:cov.xml"