-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
76 lines (65 loc) · 1.76 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
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "vesta"
dynamic = ["version"]
description = "Vestaboard client library"
authors = [
{name = "Jon Parise", email = "[email protected]"},
]
readme = "README.md"
license = {text = "MIT"}
keywords = ["vestaboard"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"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",
]
requires-python = ">= 3.9"
dependencies = [
"httpx>=0.23.1",
]
[project.optional-dependencies]
docs = [
"Sphinx==8.1.3",
"furo==2024.8.6",
"sphinx_mdinclude==0.6.0",
]
dev = [
"mypy==1.13.0",
"pytest==8.3.1",
"pytest-cov==6.0.0",
"respx==0.21.0",
"ruff==0.7.0",
]
[project.urls]
Homepage = "https://github.com/jparise/vesta"
Documentation = "https://vesta-py.readthedocs.io/"
Repository = "https://github.com/jparise/vesta.git"
Issues = "https://github.com/jparise/vesta/issues"
Changelog = "https://github.com/jparise/vesta/blob/main/CHANGELOG.md"
[tool.setuptools.dynamic]
version = {attr = "vesta.__version__"}
[tool.coverage.run]
branch = true
source = ["src"]
[tool.mypy]
packages = ["vesta", "tests"]
python_version = 3.9
[tool.pytest.ini_options]
addopts = "--cov=vesta --cov-report=term-missing --doctest-modules"
[tool.ruff]
src = ["src", "tests"]
[tool.ruff.lint]
select = ["E", "F", "I", "RUF", "W"]
[tool.ruff.lint.isort]
force-single-line = true
[tool.ruff.lint.per-file-ignores]
"tests/test_chars.py" = ["E501"]