-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
66 lines (58 loc) · 1.46 KB
/
pyproject.toml
File metadata and controls
66 lines (58 loc) · 1.46 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 = "helldivepy"
version = "1.0.0"
description = "A Helldivers 2 API wrapper"
readme = "README.md"
license = { text = "MIT" }
authors = [
{ name = "Anthony Kovach", email = "aj@ajxd2.dev" }
]
keywords = ["helldivers 2", "api", "wrapper"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Typing :: Typed",
]
requires-python = ">=3.11"
dependencies = [
"httpx>=0.28.1",
"pydantic>=2.0.0,<3.0.0",
]
[project.optional-dependencies]
docs = [
"mkdocs-material>=9.0.0",
"mkdocstrings[python]>=0.27.0",
]
[build-system]
requires = ["uv_build>=0.10.8,<0.11.0"]
build-backend = "uv_build"
[tool.ruff]
target-version = "py311"
line-length = 88
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B", "SIM"]
ignore = []
[tool.ruff.lint.isort]
known-first-party = ["helldivepy"]
[tool.pyright]
pythonVersion = "3.11"
typeCheckingMode = "strict"
venvPath = "."
venv = ".venv"
[tool.pytest.ini_options]
testpaths = ["tests"]
markers = ["live: make real HTTP calls to the Helldivers 2 API (deselected by default, use --live to enable)"]
[dependency-groups]
dev = [
"pre-commit>=4.5.1",
"pyright>=1.1.408",
"pytest>=9.0.2",
"respx>=0.22.0",
"rich>=14.3.3",
"ruff>=0.15.5",
]