-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (63 loc) · 1.5 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (63 loc) · 1.5 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
[project]
name = "knoepfe"
version = "0.1.1"
description = "Connect and control Elgato Stream Decks"
authors = [
{ name = "Simon Hayessen", email = "simon@lnqs.io" },
{ name = "Simon Brakhane", email = "simon@brakhane.net" }
]
requires-python = ">=3.10"
readme = "README.md"
license = "GPL-3.0-or-later"
dependencies = [
"schema>=0.7.7,<0.8",
"appdirs>=1.4.4,<2",
"docopt>=0.6.2,<0.7",
"streamdeck>=0.9.5,<0.10",
"Pillow>=10.4.0,<11",
"aiorun>=2024.8.1,<2025",
"pulsectl-asyncio>=1.2.1,<2",
"pulsectl>=24.8.0,<25",
"simpleobsws>=1.4.0",
]
[project.urls]
Homepage = "https://github.com/lnqs/knoepfe"
Repository = "https://github.com/lnqs/knoepfe"
[project.scripts]
knoepfe = "knoepfe.__main__:main"
[dependency-groups]
dev = [
"pre-commit>=3.8.0,<4",
"pytest>=8.3.3,<9",
"pytest-asyncio>=0.24.0,<0.25",
"pytest-cov>=5.0.0,<6",
"types-appdirs>=1.4.3.5,<2",
"types-docopt>=0.6.11.4,<0.7",
"types-pillow>=10.2.0.20240822,<11",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.isort]
profile = "black"
extend_skip_glob = [".venv/*"]
[tool.black]
extend-exclude = '''
(
\.venv/ # exclude .venv directory
)
'''
[tool.mypy]
strict = true
[[tool.mypy.overrides]]
module = [
"StreamDeck.*",
"pulsectl.*",
"pulsectl_asyncio.*",
"aiorun.*",
"schema.*",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
filterwarnings = "ignore::DeprecationWarning:pulsectl_asyncio"
addopts = "--cov=knoepfe --cov-report=term-missing --asyncio-mode=auto"