-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
67 lines (59 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
67 lines (59 loc) · 1.81 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
[project]
name = "pyaussiebb"
version = "0.1.6"
description = "Aussie Broadband API module"
authors = [{ name = "James Hodgkinson", email = "james@terminaloutcomes.com" }]
license = { text = "MIT" }
requires-python = ">=3.9"
dependencies = ["requests>=2.27.1", "aiohttp>=3.11.18", "pydantic>=2.11.4"]
readme = "README.md"
keywords = ["api", "aussie", "broadband", "internet"]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.urls]
issues = "https://github.com/yaleman/pyaussiebb/issues/"
homepage = "https://github.com/yaleman/pyaussiebb"
repository = "https://github.com/yaleman/pyaussiebb"
documentation = "https://yaleman.github.io/pyaussiebb/"
[dependency-groups]
dev = [
"ruff>=0.11.10",
"mypy==1.19.1",
"pytest>=8.3.5",
"types-requests==2.32.4.20260107",
"mkdocstrings>=0.27",
"mkdocs-material==9.7.6",
"mkdocs>=1.6.1",
"requests-testing>=0.2.0",
"pytest-asyncio>=0.26.0",
"pytest-aiohttp>=1.1.0",
"mkdocstrings-python>=1.16.10",
]
[tool.mypy]
plugins = "pydantic.mypy"
[tool.ruff]
line-length = 200
[tool.pdm.build]
includes = ["aussiebb"]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pytest.ini_options]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
markers = [
"network: Tests that require network access and a working backend server",
]
[tool.pylint.MASTER]
max-line-length = 200
extension-pkg-whitelist = "pydantic"
load-plugins = "pylint_pydantic"