-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
64 lines (54 loc) · 1.73 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
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools","setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "audiconnectpy"
dynamic = ["version"]
license = {text = "GPL-3"}
description = "Provides asynchronous authentication and access to Audi Connect"
readme = "README.md"
authors = [
{name = "Cyr-ius", email = "[email protected]"}
]
keywords = ["connect", "async", "audi"]
classifiers = [
"Programming Language :: Python",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Software Development :: Libraries :: Python Modules",
]
requires-python = ">=3.10.0"
dependencies = [
"aiohttp>=3.8.1",
"beautifulsoup4>=4.11.2",
"pydantic>=2.8.2",
"pydantic_extra_types>=2.9.0",
]
[project.urls]
Homepage = "https://github.com/cyr-ius/audiconnectpy"
[tool.setuptools_scm]
[tool.setuptools]
platforms = ["any"]
zip-safe = false
include-package-data = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.ruff.lint.flake8-pytest-style]
fixture-parentheses = false
[tool.ruff.lint.flake8-tidy-imports.banned-api]
"async_timeout".msg = "use asyncio.timeout instead"
"pytz".msg = "use zoneinfo instead"
[tool.ruff.lint.isort]
force-sort-within-sections = true
combine-as-imports = true
split-on-trailing-comma = false
[[tool.mypy.overrides]]
module = "yaml"
ignore_missing_imports = true