32 lines
746 B
TOML
32 lines
746 B
TOML
[project]
|
|
name = "pyside_queue_sqlite"
|
|
version = "0.1.0"
|
|
description = "A PySide6 application that uses queue-sqlite to manage tasks"
|
|
readme = "README.md"
|
|
requires-python = ">=3.12"
|
|
dependencies = [
|
|
"markdown>=3.9",
|
|
"opencv-python>=4.12.0.88",
|
|
"opencv-python-headless>=4.12.0.88",
|
|
"pyside6>=6.9.1",
|
|
"pyside6-fluent-widgets>=1.8.6",
|
|
"queue-sqlite>=0.2.0",
|
|
"requests>=2.32.5",
|
|
"toml>=0.10.2",
|
|
]
|
|
# 是否是生产环境
|
|
is-production = false
|
|
remote-url = "http://localhost:8080/"
|
|
|
|
[[tool.uv.index]]
|
|
default = true
|
|
# url = "https://pypi.tuna.tsinghua.edu.cn/simple"
|
|
url = "https://mirrors.aliyun.com/pypi/simple"
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"nuitka>=2.7.12",
|
|
"pyinstaller>=6.15.0",
|
|
"zstandard>=0.23.0",
|
|
]
|