-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (62 loc) · 1.57 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (62 loc) · 1.57 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
[project]
name = "avemu"
version = "0.1.0"
description = "TCP-based test emulator for A/V equipment RS232 control"
readme = "README.md"
license = "MIT"
requires-python = ">=3.12"
authors = [
{ name = "Ryan Snodgrass", email = "rsnodgrass@gmail.com" }
]
keywords = ["av", "audio", "video", "emulator", "testing", "rs232", "serial"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Home Automation",
"Topic :: Software Development :: Testing",
]
dependencies = [
"coloredlogs>=15.0",
"pyavcontrol>=2.0.0",
"rich>=13.0",
]
[project.scripts]
avemu = "avemu:main"
[project.optional-dependencies]
dev = [
"pre-commit",
"pytest>=8.0",
"pytest-asyncio>=0.24",
]
[project.urls]
Repository = "https://github.com/rsnodgrass/avemu"
Issues = "https://github.com/rsnodgrass/avemu/issues"
[tool.uv.sources]
pyavcontrol = { path = "../avcontrol", editable = true }
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
include = ["avemu.py"]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.isort]
profile = "black"
force_to_top = [ "logging" ]
balanced_wrapping = true
[tool.black]
line-length = 90
[tool.pycln]
all = true
[tool.refurb]
quiet = true
ignore = []
[tool.pylint.format]
max-line-length = "88"
[tool.pylint.FORMAT]
expected-line-ending-format = "LF"
[tool.pylint.CODE_STYLE]
max-line-length-suggestions = 90