-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (69 loc) · 2.53 KB
/
pyproject.toml
File metadata and controls
77 lines (69 loc) · 2.53 KB
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[project]
name = "depsland"
version = "0.11.0a16"
description = "User oriented dependency management and application distribution tool."
license = "MIT"
authors = [{ name = "Likianta", email = "likianta@foxmail.com" }]
# readme = "README.md"
packages = [{ include = "depsland" }]
requires-python = ">=3.8"
dynamic = ["dependencies"]
[project.scripts]
depsland = 'depsland.__main__:_cli'
[project.urls]
homepage = "https://github.com/likianta/depsland"
[tool.poetry.dependencies]
python = "^3.12"
argsense = "^1.1.0"
conflore = "^0.2.2"
lk-logger = "^6.0.7"
lk-utils = "^3.4.3"
oss2 = "^2.19.1"
pip = "^25.3.0"
poetry = "^2.3.2"
psutil = "^7.0.0"
pyapp-window = "^2.1.4"
pyportable-crypto = "^1.5.0"
semver = "^3.0.4"
streamlit = "^1.55.0"
streamlit-canary = "^0.1.0"
streamlit-extras = "^0.6.0"
# streamlit-nested-layout = { version = "^0.1.4", python = "!=3.9.7" }
streamlit-tree-select = "^0.0.5"
tree-shaking = "^0.2.2"
windows-toasts = { version = "^1.0.0", platform = "win32" }
[tool.poetry.group.dev.dependencies]
airmise = { version = "^2.0.1a1", source = "likianta" }
argsense = { version = "^1.1.1a0", source = "likianta" }
conflore = { version = "^0.2.2", source = "likianta" }
freesimplegui = "^5.2.0.post1"
icnsutil = "^1.1.0" # <- sidework/image_converter.py
ipython = "^9.10.0"
lk-logger = { version = ">=6.0.7,<6.1.0", source = "likianta" }
lk-utils = { version = "^3.5.0a14", source = "likianta" }
# matplotlib = { version = "^3.10.5", python = "^3.10" } # to support numpy 2.x, used by pyinstaller
nuitka = "^2.8.1"
pillow = "^11.0.0" # <- sidework/image_converter.py
# pinkrain = { version = "^0.0.0a32", source = "likianta" }
pyapp-window = { version = "^2.2.0b5", source = "likianta" }
# pyinstaller = { version = "^6.15.0", python = ">=3.12,<3.15" }
pyinstrument = "^5.0.3"
pyportable-crypto = { version = "^1.5.1a1", source = "likianta" }
# pyside6 = { version = "^6.10.0", python = ">=3.12,<3.14" } # <- demo/hello-world-gui
# pysimplegui = "^5.0.7" # <- demo/hello-world-tkinter
# qmlease = { version = "^3.1.0a42", source = "likianta" } # <- demo/hello-world-gui
streamlit-canary = { version = "^0.1.1a18", source = "likianta" }
tree-shaking = { version = "^0.2.2", source = "likianta" }
[[tool.poetry.source]]
name = "aliyun"
url = "https://mirrors.aliyun.com/pypi/simple/"
priority = "primary"
[[tool.poetry.source]]
name = "likianta"
url = "http://localhost:2191/"
priority = "supplemental"
[tool.poetry-extensions]
ignore-unused-packages = ["poetry"]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"