-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
59 lines (55 loc) · 1.42 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
[build-system]
requires = ["setuptools >= 60.0"]
build-backend = "setuptools.build_meta"
[project]
name = "streamdeck_sdk"
version = "1.2.1"
authors = [
{ name = "Grigoriy Gusev", email = "[email protected]" },
]
description = "Library for creating Stream Deck plugins in Python."
readme = "README-PYPI.md"
dependencies = [
"annotated-types==0.7.0",
"decohints==1.0.9",
"pydantic==2.8.2",
"pydantic_core==2.20.1",
"typing_extensions==4.12.2",
"websockets==13.0.1",
]
requires-python = ">=3.8"
keywords = [
"property inspector",
"property inspector generator",
"streamdeck property inspector generator",
"streamdeck property inspector",
"streamdeck pi",
"python",
"sdk",
"streamdeck",
"streamdeck-sdk",
"streamdeck_sdk",
"stream deck sdk",
"stream deck",
"elgato",
"elgato sdk",
"elgato stream deck",
"streamdeck-python-sdk",
"streamdeck_python_sdk",
"streamdeck python sdk",
]
classifiers = [
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
dev = [
"streamdeck-sdk-cli>=0.0.2,<0.1.0",
"streamdeck-sdk-pi>=0.0.1,<0.1.0",
]
[project.urls]
Homepage = "https://github.com/gri-gus/streamdeck-python-sdk"
Source = "https://github.com/gri-gus/streamdeck-python-sdk"
[tool.setuptools.packages.find]
where = ["src"]