-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (43 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
46
47
48
49
50
[tool.poetry]
name = "lk-utils"
version = "3.1.3a2"
description = "LK Utils is a set of utility wrappers made for data processing."
readme = "README.md"
authors = ["Likianta <[email protected]>"]
license = "MIT"
[tool.poetry.dependencies]
python = "^3.8"
argsense = ">=0.5.8,<1.0.0"
lk-logger = "^6.0.3"
# lk-logger = { version = "^6.0.3b0", source = "likianta-host" }
psutil = "^6.0.0"
pyyaml = "^6.0.0"
rich = "^13.8.0"
typing-extensions = "^4.0.0"
# extras
# openpyxl = { version = "3.0.10", optional = true } # <- pyexcel-xlsx (https://github.com/pyexcel/pyexcel-xlsx/issues/52)
# pyexcel = { version = "^0.7.0", optional = true }
# pyexcel-xlsx = { version = "^0.6.0", optional = true }
xlrd = { version = "1.2.0", optional = true }
xlsxwriter = { version = "^3.2.0", optional = true }
[tool.poetry.extras]
# exl = ["openpyxl", "pyexcel", "pyexcel-xlsx"]
exl = ["xlrd", "xlsxwriter"]
[tool.poetry.group.dev.dependencies]
ipython = { version = "^8.30.0", python = ">=3.10" }
# openpyxl = "3.0.10" # <- pyexcel-xlsx
# pyexcel = "^0.7.0"
# pyexcel-xlsx = "^0.6.0"
xlrd = "1.2.0"
xlsxwriter = "^3.2.0"
[[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"