-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
89 lines (77 loc) · 2.68 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
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
78
79
80
81
82
83
84
85
86
87
88
89
[tool.poetry]
name = "depsland"
version = "0.9.0a2"
description = "User oriented dependency management and application distribution tool."
license = "MIT"
authors = ["Likianta <likianta@foxmail.com>"]
homepage = "https://github.com/likianta/depsland"
[tool.poetry.dependencies]
python = "^3.8"
argsense = "^0.5.8"
# argsense = { version = "^0.5.9a0", source = "likianta-host" }
conflore = "^0.2.0"
lk-logger = "^6.0.3"
# lk-logger = { version = "^6.0.2", source = "likianta-host" }
# lk-utils = "^3.1.1"
lk-utils = { version = "^3.1.2a4", source = "likianta-host" }
oss2 = "^2.18.3"
pip = "^24.0.0"
pipgrip = "^0.10.13" # DELETE?
poetry = "^1.8.5"
psutil = "^6.0.0"
# pyapp-window = "^2.1.1"
pyapp-window = { version = "^2.1.2a0", source = "likianta-host" }
# pyyaml = "^6.0.0"
rich = "^13.8.0"
semver = "^3.0.2"
streamlit = { version = "^1.40.0", python = "!=3.9.7" }
streamlit-extras = "^0.5.0"
streamlit-nested-layout = { version = "^0.1.4", python = "!=3.9.7" }
# toml = { version = "^0.10.0", python = "<3.11" }
toml = "^0.10.0"
windows-toasts = { version = "^1.0.0", platform = "win32" }
[tool.poetry.group.dev.dependencies]
ipython = { version = "^8.22.0", python = ">=3.10,<4.0" }
# nuitka = "^2.3.11"
pinkrain = { version = "^0.0.0a17", source = "likianta-host" }
pyinstaller = { version = "^6.10.0", python = "==3.12" }
# --- demo
pyside6 = { version = ">=6.6.0,<6.7.0", python = ">=3.10,<3.13" } # <- demo/hello-world-gui
pysimplegui = "^5.0.7" # <- demo/hello-world-tkinter
qmlease = { version = ">=3.0.5a10,<3.1.0", source = "likianta-host" } # <- demo/hello-world-gui
# --- indirect deps
numpy = { version = "^2.2.0", python = ">=3.10" } # <- streamlit
pandas = { version = "^2.2.2", python = ">=3.10" } # <- streamlit
statsmodels = { version = "^0.14.4", python = ">=3.9" } # <- plotly
# --- sidework
dash = "^2.17.1"
feffery-antd-components = "^0.3.9"
feffery-dash-utils = "^0.1.4"
icnsutil = "^1.1.0" # <- sidework/image_converter.py
pillow = { version = "^11.0.0", python = ">=3.12" } # <- sidework/image_converter.py
st-ant-tree = "^0.0.13"
streamlit-canary = { version = "^0.1.0a11", source = "likianta-host" } # TODO: publish to PyPI, but rename to ...
# streamlit-tree-select = "^0.0.5"
[tool.poetry.scripts]
depsland = 'depsland.__main__:_cli'
[[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:2131/"
priority = "supplemental"
[build-system]
requires = ["poetry"]
build-backend = "poetry.masonry.api"
[tool.poetry-extensions]
ignored_redundant_packages = [
"pip",
"pipgrip",
"poetry",
"pyportable_runtime",
]
# ---
[tool.ruff]
line-length = 80