forked from srevinsaju/guiscrcpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
38 lines (31 loc) · 1012 Bytes
/
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
[tool.poetry]
name = "guiscrcpy"
version = "4.11.3"
description = "A simple, pluggable, graphical user interface for the fastest Android screen mirroring software"
authors = ["Srevin Saju <[email protected]>"]
license = "GPLv3"
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/srevinsaju/guiscrcpy/issues"
[tool.poetry.dependencies]
python = ">=3.7,<3.10"
psutil = "^5.8.0"
pynput = "1.6.8"
colorama = "^0.4.4"
click = "^8.0.1"
QtPy = "^1.9.0"
PyQt5 = {version = "^5.15.4", optional = true}
PyInstaller = {version = "*", optional = true}
pywin32 = {version = "302", markers = "platform_system == 'Windows'" }
PySide2 = {version = "^5.15.2", optional = true}
CairoSVG = {version = "^2.5.2", optional = true}
[tool.poetry.dev-dependencies]
black = "^21.7b0"
[tool.poetry.extras]
PyQt5 = ["pyqt5"]
PySide2 = ["pyside2"]
PyInstaller = ["pyinstaller"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
guiscrcpy = "guiscrcpy.cli:cli"