-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (38 loc) · 1.37 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
[tool.poetry]
name = "lk-logger"
version = "6.0.5"
homepage = "https://github.com/likianta/lk-logger"
description = "Python print with source map and varnames."
readme = "README.md"
authors = ["Likianta <likianta@foxmail.com>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
rich = "^13.8"
# --- svg util ---
# html2image = { version = "^2.0.4", optional = true }
# pycairo = { version = "^1.27.0", python = "^3.9", optional = true }
# selenium = { version = "^4.27.1", optional = true }
svg-ultralight = { version = "^0.34.0", python = "^3.9", optional = true }
[tool.poetry.extras]
ext = ["svg-ultralight"]
[tool.poetry.group.dev.dependencies]
# argsense = "^0.5.8"
argsense = { version = "^0.7.0", source = "likianta" }
# depsland = { version = "^0.9.0a14", source = "likianta", python = "^3.12" }
# html2image = "^2.0.4"
ipython = { version = "^8.30.0", python = ">=3.10" }
lk-utils = "^3.1.2" # misc/compose_terminal_theme.py
# nuitka = { version = "^2.5.6", python = "==3.12" }
svg-ultralight = { version = "^0.34.0", python = "^3.9" }
[[tool.poetry.source]]
name = "tsinghua"
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
priority = "primary"
[[tool.poetry.source]]
name = "likianta"
url = "http://likianta.pro:2131/"
priority = "supplemental"
[build-system]
requires = ["poetry"]
build-backend = "poetry.core.masonry.api"