mirror of
https://github.com/Refound-445/nonebot-plugin-nailongremove.git
synced 2025-11-04 21:22:43 +08:00
38 lines
1.3 KiB
TOML
38 lines
1.3 KiB
TOML
[project]
|
|
name = "nailong-workspace"
|
|
version = "0"
|
|
requires-python = "<4.0,>=3.9"
|
|
dependencies = []
|
|
license = { text = "MIT" }
|
|
readme = "README.md"
|
|
|
|
[tool.pdm.dev-dependencies]
|
|
dev = [
|
|
"httpx>=0.27.2",
|
|
"beautifulsoup4>=4.12.3",
|
|
"lxml>=5.3.0",
|
|
# "-e file:///${PROJECT_ROOT}/packages/nonebot-plugin-nailongremove-base#egg=nonebot-plugin-nailongremove-base",
|
|
# "-e file:///${PROJECT_ROOT}/packages/nonebot-plugin-nailongremove-cpu#egg=nonebot-plugin-nailongremove",
|
|
# "-e file:///${PROJECT_ROOT}/packages/nonebot-plugin-nailongremove-gpu#egg=nonebot-plugin-nailongremove-gpu",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["pdm-backend"]
|
|
build-backend = "pdm.backend"
|
|
|
|
[tool.pdm]
|
|
distribution = false
|
|
|
|
[tool.pdm.scripts]
|
|
render = { call = "scripts.render:main" }
|
|
|
|
install-base = { shell = "cd packages/nonebot-plugin-nailongremove-base && pdm install && cd ../.." }
|
|
install-cpu-s = { shell = "cd packages/nonebot-plugin-nailongremove-cpu && pdm install && cd ../.." }
|
|
install-gpu-s = { shell = "cd packages/nonebot-plugin-nailongremove-gpu && pdm install && cd ../.." }
|
|
install-cpu = { composite = ["install-base", "install-cpu"] }
|
|
install-gpu = { composite = ["install-base", "install-gpu"] }
|
|
|
|
lock-base = { shell = "cd packages/nonebot-plugin-nailongremove-base && pdm lock && cd ../.." }
|
|
|
|
pub-all = { call = "scripts.pub_all:main" }
|