forked from selkies-project/selkies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (42 loc) · 1.34 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
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at https://mozilla.org/MPL/2.0/.
[build-system]
requires = [
"setuptools>=42",
"wheel"
]
build-backend = "setuptools.build_meta"
[project]
name = "selkies-gstreamer"
version = "0.0.0"
authors = [
{name = "Dan Isla", email = "[email protected]"},
{name = "Seungmin Kim", email = "[email protected]"},
]
description = "Open-Source Low-Latency Linux WebRTC HTML5 Remote Desktop and 3D Graphics / Game Streaming Platform with GStreamer"
readme = "README.md"
license = "MPL-2.0"
classifiers = [
"Programming Language :: Python :: 3",
]
requires-python = ">=3.8"
dependencies = [
"websockets>=13.0",
"gputil",
"prometheus_client",
"msgpack",
"pynput",
"psutil",
"watchdog",
"Pillow",
"python-xlib @ https://github.com/selkies-project/python-xlib/archive/master.zip",
]
[project.urls]
Homepage = "https://github.com/selkies-project/selkies-gstreamer"
"Bug Tracker" = "https://github.com/selkies-project/selkies-gstreamer/issues"
[project.scripts]
selkies-gstreamer = "selkies_gstreamer.__main__:entrypoint"
selkies-gstreamer-resize = "selkies_gstreamer.resize:entrypoint"
[tool.setuptools.packages.find]
where = ["src"]