-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (72 loc) · 2.06 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (72 loc) · 2.06 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[project]
name = "vehiclepass"
version = "0.3.0"
description = "A Python API to manage your FordPass-enabled vehicle."
readme = "README.md"
authors = [{ name = "Austin de Coup-Crank", email = "austindcc@gmail.com" }]
requires-python = ">=3.9"
dependencies = [
"httpx>=0.28.1",
"pydantic>=2.11.1",
"pydantic-extra-types>=2.10.3",
"python-dotenv>=1.1.0",
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Operating System :: OS Independent",
"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",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/austind/vehiclepass"
Repository = "https://github.com/austind/vehiclepass.git"
Issues = "https://github.com/austind/vehiclepass/issues"
Changelog = "https://github.com/austind/vehiclepass/blob/main/CHANGELOG.md"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"ipdb>=0.13.13",
"mypy>=1.15.0",
"nox>=2025.2.9",
"pytest>=8.3.5",
"respx>=0.22.0",
"ruff>=0.11.2",
]
[tool.ruff]
line-length = 120
target-version = "py39"
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
line-ending = "auto"
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"UP", # pyupgrade
"N", # pep8-naming
"RUF", # ruff-specific rules
"W", # pycodestyle warnings
"D", # pydocstyle
]
exclude = [".git", ".venv", "__pycache__", "build", "dist"]
[tool.ruff.lint.isort]
known-first-party = ["vehiclepass"]
combine-as-imports = true
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.ruff.lint.per-file-ignores]
"tests/*" = ["B009"]
"./hack.py" = ["ALL"]