-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
70 lines (63 loc) · 1.38 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "g3pylib"
authors = [
{name = "Markus Wesslén", email = "[email protected]"},
{name = "Oskar Söderberg", email = "[email protected]"}
]
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Typing :: Typed",
"Private :: Do Not Upload"
]
requires-python = ">=3.10"
license = {file = "LICENSE.md"}
dependencies = [
"websockets ~= 10.3",
"zeroconf ~= 0.47.1",
"aiortsp @ git+https://github.com/m4reko/aiortsp@master",
"av ~= 10.0.0",
"aiohttp ~= 3.8.1"
]
dynamic = ["version", "description"]
[project.optional-dependencies]
test = [
"python-dotenv",
"pytest",
"pytest-dotenv",
"pytest-asyncio"
]
doc = ["pdoc"]
dev = [
"isort",
"black",
"pyflakes",
"pre-commit"
]
examples = [
"python-dotenv",
"opencv-python"
]
example-app = [
"kivy[media] ~= 2.1.0"
]
[project.urls]
Home = "https://github.com/tobiipro/g3pylib"
[tool.pyright]
include = ["src", "examples", "tests"]
typeCheckingMode = "basic"
strict = ["src", "tests"]
[tool.isort]
profile = "black"
src_paths = ["src", "examples", "tests"]
skip_gitignore = true
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
# Timeout
faulthandler_timeout=30