-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
32 lines (28 loc) · 902 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
[tool.poetry]
name = "lk-qtquick-scaffold"
version = "2.0.0"
homepage = "https://github.com/likianta/lk-qtquick-scaffold"
description = "A flexible toolset to improve QML coding experience for PyQt/PySide development."
readme = "README.md"
authors = ["Likianta <likianta@foxmail.com>"]
license = "MIT"
[[tool.poetry.source]]
name = "tsinghua"
url = "https://mirrors.tuna.tsinghua.edu.cn/pypi/web/simple/"
default = true
[tool.poetry.dependencies]
python = "^3.8"
argsense = "^0.4.2"
lambda-ex = "^1.1.0"
lk-logger = "^5.4.1"
lk-utils = "^2.4.0"
pyyaml = ""
qtpy = ""
pyside6 = { version = "", optional = true }
pyside2 = { version = "", optional = true }
[tool.poetry.extras]
qt6 = ["pyside6"] # pip install lk-qtquick-scaffold[qt6]
qt5 = ["pyside2"] # pip install lk-qtquick-scaffold[qt5]
[build-system]
requires = ["poetry"]
build-backend = "poetry.masonry.api"