-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (36 loc) · 1.11 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
[tool.poetry]
name = "perfcat"
version = "1.0.10"
license = "MIT"
description = "基于`QT` `pyside6` 开发的安卓游戏性能采集工具。"
readme = "README.md"
authors = ["kaluluosi <[email protected]>"]
repository = "https://github.com/kaluluosi/PerformanceCatcher"
[tool.poetry.dependencies]
python = "^3.8"
pyside6 = "^6.3.0"
icespringpysidestubs-pyside6 = "^1.3.1"
markdown = "^3.3.6"
pywin32 = { version = "^303", markers = "sys_platform == 'win32'" }
pywin32-stubs = { version = "^0.1.4", markers = "sys_platform == 'win32'" }
pyudev = { version = "^0.23.2", markers = "sys_platform == 'linux'" }
webob = "^1.8.7"
openpyxl = "^3.0.10"
pure-python-adb = "0.3.0.dev0"
[tool.poetry.dev-dependencies]
pytest = "^5.2"
nuitka = "^0.7.7"
autopep8 = "^2.0.0"
[tool.poetry.scripts]
perfcat = "perfcat.PerfCat:main"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "aliyun"
url = "https://mirrors.aliyun.com/pypi/simple/"
priority = "default"
[[tool.poetry.source]]
name = "tsinghua"
url = "https://pypi.tuna.tsinghua.edu.cn/simple"
priority = "primary"