-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
40 lines (35 loc) · 1.15 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
[tool.poetry]
name = "qmlease"
version = "3.0.5a9"
homepage = "https://github.com/likianta/qmlease"
description = "A flexible toolkit for Python programmer to efficiently develop QML graphical user interface."
readme = "README.md"
authors = ["Likianta <likianta@foxmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
argsense = "^0.5.7"
# lk-logger = "^5.6.4"
lk-logger = { version = "^6.0.0a1", source = "likianta-host" }
lk-utils = "^2.10.8"
# lk-utils = { version = "^2.9.0b1", source = "likianta-host" }
qtpy = "^2.3.0"
typing-extensions = "*"
[tool.poetry.group.dev.dependencies]
# pyside2 = { version = "^5.15", python = ">=3.8,<3.11", optional = true }
pyside6 = [ # FIXME
{ version = ">=6.4.3,<6.5.0", python = ">=3.8,<3.12" },
# { version = ">=6.6.0,<6.7.0", python = ">=3.12,<3.13" },
{ version = ">=6.7.1", python = ">=3.12,<3.13" },
]
[[tool.poetry.source]]
name = "tsinghua"
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
priority = "primary"
[[tool.poetry.source]]
name = "likianta-host"
url = "http://likianta.pro:2006/"
priority = "supplemental"
[build-system]
requires = ["poetry"]
build-backend = "poetry.masonry.api"