-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (67 loc) · 1.66 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
77
[tool.ruff]
target-version = "py312"
[tool.ruff.lint]
extend-select = ["I", "TRY", "UP", "D", "W"]
extend-ignore = ["D213", "D202", "D203", "D213", "UP038", "TRY003"]
[tool.pytest.ini_options]
addopts = "--cov=pynecil/ --cov-report=term-missing"
asyncio_mode = "auto"
[tool.hatch]
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.version]
source = "regex_commit"
tag_sign = false
commit_extra_args = ["-e"]
path = "pynecil/__init__.py"
[tool.hatch.envs.default]
python = "3.12"
installer = "uv"
dependencies = [
"mypy==1.14.1",
"ruff==0.8.6",
"pytest==8.3.3",
"pytest-cov==6.0.0",
"mkdocs-material==9.5.46",
"mkdocstrings[python]==0.27.0",
"pytest-asyncio==0.24.0",
]
[tool.hatch.envs.default.scripts]
test = "pytest"
test-cov-xml = "pytest --cov-report=xml"
lint = [
"ruff format .",
"ruff --fix .",
"mypy pynecil/",
]
lint-check = [
"ruff format --check .",
"ruff check .",
"mypy pynecil/",
]
docs-serve = "mkdocs serve"
docs-build = "mkdocs build"
[build-system]
requires = ["hatchling", "hatch-regex-commit"]
build-backend = "hatchling.build"
[project]
name = "pynecil"
authors = [
{ name = "Manfred Dennerlein Rodelo", email = "[email protected]" }
]
description = "Python library to communicate with Pinecil V2 soldering irons via Bluetooth"
readme = "README.md"
dynamic = ["version"]
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent"
]
requires-python = ">=3.11"
dependencies = [
"bleak>=0.22.0",
"aiohttp>=3.11.10"
]
[project.urls]
Documentation = "https://tr4nt0r.github.io/pynecil/"
Source = "https://github.com/tr4nt0r/pynecil"