-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
41 lines (35 loc) · 1.28 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
[tool.poetry]
name = "lk-logger"
version = "6.0.3"
homepage = "https://github.com/likianta/lk-logger"
description = "Python print with source map and varnames."
readme = "README.md"
authors = ["Likianta <[email protected]>"]
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 }
# TODO: change svg-ultralight version to "^0.34.0", requires python >= 3.9, -
# check if there are API changes between 0.34.0+ and 0.9.0 (currently used), -
# since the version numbers are significantly different.
svg-ultralight = { version = "*", optional = true }
[tool.poetry.extras]
ext = ["svg-ultralight"]
[tool.poetry.group.dev.dependencies]
argsense = "^0.5.8"
# html2image = "^2.0.4"
ipython = { version = "^8.30.0", python = ">=3.10" }
lk-utils = "^3.1.1" # misc/compose_terminal_theme.py
nuitka = { version = "^2.5.6", python = "==3.12" }
svg-ultralight = "*"
[[tool.poetry.source]]
name = "tsinghua"
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
priority = "primary"
[build-system]
requires = ["poetry"]
build-backend = "poetry.core.masonry.api"