-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpyproject.toml
44 lines (37 loc) · 935 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.7"
description = "A client of scrcpy"
authors = ["lengyue <[email protected]>"]
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]
# Should match the python versions in .github/workflows/ci.yml and publish.yml
python = ">=3.9,<3.13"
av = "^12"
numpy = "^2"
adbutils = "^2"
# Optional dependencies for ui
PySide6 = { version = "^6.0.0", optional = true }
[tool.poetry.extras]
ui = ["PySide6"]
[tool.poetry.group.dev.dependencies]
flake8 = "^7"
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"