KeyPress/pyproject.toml

28 lines
514 B
TOML
Raw Normal View History

2025-06-04 11:33:17 +08:00
[project]
2025-10-22 17:26:03 +08:00
name = "keypressremark"
2025-06-04 11:33:17 +08:00
version = "0.1.0"
2025-10-22 17:26:03 +08:00
description = "一个简单的按键模拟工具"
readme = "README.md"
requires-python = ">=3.11"
2025-06-04 11:33:17 +08:00
authors = [
2025-10-22 17:26:03 +08:00
{name = "xiao liu", email = ""}
2025-06-04 11:33:17 +08:00
]
dependencies = [
2025-10-22 17:26:03 +08:00
"PyQt5==5.15.11",
"pyqt5-qt5==5.15.2",
"pywin32==311",
2025-06-04 11:33:17 +08:00
]
[build-system]
2025-10-22 17:26:03 +08:00
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pyinstaller>=6.0.0",
]
# index-url = "https://pypi.org/simple/"
[project.scripts]
keypressremark = "src.main:main"