-
Notifications
You must be signed in to change notification settings - Fork 76
/
pyproject.toml
44 lines (37 loc) · 929 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
39
40
41
42
43
44
[tool.poetry]
name = "scrcpy-client"
version = "0.4.3"
description = "A client of scrcpy"
authors = ["lengyue <lengyue@lengyue.me>"]
readme = "README.md"
repository = "https://github.com/leng-yue/py-scrcpy-client"
license = "MIT"
packages = [
{ include = "scrcpy" },
{ include = "scrcpy_ui" },
]
[tool.poetry.scripts]
py-scrcpy = "scrcpy_ui:main"
[tool.poetry.dependencies]
python = ">=3.7,<3.11"
av = "^9.0.0"
opencv-python = "^4.5.0"
# Optional dependencies for ui
click ={ version = "^8.0.0", optional = true }
PySide6 ={ version = "^6.0.0", optional = true }
adbutils = "^0.14.1"
[tool.poetry.extras]
ui = ["click", "PySide6"]
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
isort = "*"
black = "^22.3.0"
pytest = "^7.1.2"
pytest-cov = "^3.0.0"
Sphinx = "^4.1.2"
myst-parser = "^0.17.2"
[tool.isort]
profile = "black"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"