-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
89 lines (69 loc) · 1.83 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "mysc"
version = "1.7.0"
authors = [
{name = "Me2sY", email = "[email protected]"}
]
description = "A Scrcpy client implemented in Python. Gui with dearpygui/pygame. With Video, Audio, also Control. GUI Supports Key Proxy, Extensions, window position record, right-click gesture control, File Manager, Virtual Camera, UHID Keyboard and Chinese input and more."
readme = "README.md"
requires-python = ">= 3.11"
keywords = ["scrcpy", "android", "adbutils", "av", "numpy", "DearPyGui", "Pygame", "adb", "pyaudio"]
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Natural Language :: Chinese (Simplified)",
"Topic :: Multimedia :: Graphics :: Capture :: Screen Capture"
]
dependencies = [
# Base
"loguru", "adbutils", "click", "uiautomator2",
# Video
"av==12.3.0",
"numpy",
# Audio
"pyaudio",
# Control
"pyperclip"
]
[project.optional-dependencies]
# For GUI USE
gui = [
# GUI Framework
"dearpygui>=2.0.0",
"pygame",
# GUI Functions
"moosegesture", "pyvirtualcam"
]
# Web USE
web = [
"nicegui"
]
flac = [
"pyflac"
]
opus = [
"pyogg", "opuslib"
]
tools = [
"pyvirtualcam"
]
full = [
"dearpygui>=2.0.0", "pygame",
"pyperclip", "moosegesture", "pyvirtualcam", "opencv-python",
"nicegui",
"pyflac", "pyogg", "opuslib"
]
[project.scripts]
mysc-cli = "myscrcpy.run:run"
mysc-web = "myscrcpy.gui.ng.main:run_app"
mysc-t-vc = "myscrcpy.tools.virtualcam:cli"
mysc-unlocker = "myscrcpy.tools.unlocker:run"
[project.gui-scripts]
mysc-gui = "myscrcpy.run:run"
[project.urls]
Homepage = "https://github.com/me2sy/MYScrcpy"
Issues = "https://github.com/me2sy/MYScrcpy/issues"