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
|
[build-system]
requires = ["setuptools>=64", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "actron-neo-api"
dynamic = ["version"]
authors = [
{ name="Kurt Chrisford", email="soft.year7030@fastmail.com" },
]
description="Python API wrapper for the Actron Neo API."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"aiohttp>=3.8.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
dev = [
"mypy>=1.11.0",
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"pytest-cov>=6.0.0",
"pre-commit>=3.0.0",
"ruff>=0.8.0",
]
[project.urls]
Homepage = "https://github.com/kclif9/actronneoapi"
Issues = "https://github.com/kclif9/actronneoapi/issues"
[tool.setuptools_scm]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
[tool.pytest.ini_options]
junit_family = "xunit2"
addopts = "-v --strict-markers"
|