-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (42 loc) · 1.41 KB
/
pyproject.toml
File metadata and controls
50 lines (42 loc) · 1.41 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
[project]
name = "tree-shaking"
version = "0.3.0a0"
description = "Python tree-shaking for dependencies to reduce the size of packaging."
authors = [{ name = "Likianta", email = "likianta@foxmail.com" }]
readme = "README.md"
packages = [{ include = "tree_shaking" }]
requires-python = ">=3.12"
dynamic = ["dependencies"]
[project.urls]
homepage = "https://github.com/likianta/python-tree-shaking"
[tool.poetry.dependencies]
python = "^3.12"
argsense = "^1.1.0"
lk-utils = "^3.4.0"
# -- options
pyyaml = { version = "^6.0.0", optional = true }
streamlit = { version = "^1.51.0", optional = true }
streamlit-canary = { version = "^0.1.0", optional = true }
[project.optional-dependencies]
ui = ["pyyaml", "streamlit", "streamlit-canary"]
[tool.poetry.group.dev.dependencies]
argsense = { version = "^1.1.0", source = "likianta" }
lk-utils = { version = "^3.4.2", source = "likianta" }
# pyecharts = "^2.0.8"
pyinstaller = { version = "^6.15.0", python = ">=3.12,<3.15" }
pyyaml = "^6.0.0"
streamlit = "^1.51.0"
streamlit-canary = { version = "^0.1.1a4", source = "likianta" }
wxpython = "^4.2.4"
[[tool.poetry.source]]
name = "tsinghua"
# url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
url = "https://mirrors.aliyun.com/pypi/simple/"
priority = "primary"
[[tool.poetry.source]]
name = "likianta"
url = "http://localhost:2131/"
priority = "supplemental"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"