27 lines
568 B
TOML
27 lines
568 B
TOML
[tool.poetry]
|
|
name = "hik-uptime"
|
|
version = "0.1.3"
|
|
description = ""
|
|
authors = ["quantulr <35954003+quantulr@users.noreply.github.com>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
pyautogui = "^0.9.54"
|
|
pytesseract = "^0.3.10"
|
|
clipboard = "^0.0.4"
|
|
pyyaml = "^6.0.1"
|
|
requests = "^2.31.0"
|
|
|
|
|
|
[[tool.poetry.source]]
|
|
name = "mirrors"
|
|
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
|
|
priority = "primary"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry.scripts]
|
|
hik-uptime = 'hik_uptime.main:run_app' |