-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (60 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
69 lines (60 loc) · 1.66 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
67
68
69
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "spnkr"
version = "0.10.1"
description = "Unofficial Python SDK for the Halo Infinite web API."
readme = "README.md"
authors = [{ name = "Andy Curtis" }]
license = { file = "LICENSE" }
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
keywords = ["halo", "infinite", "api"]
dependencies = [
"aiohttp>=3.9,<4.0",
"aiolimiter~=1.0",
"pydantic>=2.8,<3.0",
"bitstring~=4.0",
]
requires-python = ">=3.11"
[project.optional-dependencies]
cache = ["aiohttp-client-cache>=0.10"]
[project.urls]
Homepage = "https://github.com/acurtis166/SPNKr"
Documentation = "https://acurtis166.github.io/SPNKr/"
[tool.setuptools.packages.find]
include = ["spnkr*"]
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "session"
[tool.tox]
requires = ["tox>=4.28.1"]
env_list = ["3.11", "3.12", "3.13", "3.14", "lint"]
[tool.tox.env_run_base]
deps = [
"pytest==8.4.1",
"pytest-asyncio==1.1.0",
"python-dotenv==1.1.1",
"aiohttp-client-cache==0.13.0",
]
description = "Run test under {base_python}"
commands = [["python", "-m", "pytest", "--color=yes"]]
[tool.tox.env.lint]
description = "Lint source code"
deps = ["ruff"]
commands = [["ruff", "check", "."], ["ruff", "format", "."]]
[dependency-groups]
dev = [
"aiohttp-client-cache==0.13.0",
"pytest==8.4.1",
"pytest-asyncio>=1.1.0",
"coverage==7.10.0",
"mkdocs==1.6.1",
"mkdocstrings[python]==0.30.0",
"mkdocs-material==9.6.15",
"python-dotenv==1.1.1",
"ruff==0.12.5",
]