badl/pyproject.toml

29 lines
718 B
TOML
Raw Normal View History

2023-02-18 22:19:24 +08:00
[tool.poetry]
name = "badl"
version = "0.1.0"
description = "BiliBili Audio Downloader"
authors = ["Zhao Zuohong <zhbaor@zhaozuohong.vip>"]
license = "GPL-3.0-only"
2023-03-06 21:12:25 +08:00
include = ["badl/backend/dist/index.html", "badl/backend/dist/assets/*"]
2023-02-18 22:19:24 +08:00
[tool.poetry.dependencies]
2023-03-06 21:12:25 +08:00
python = ">=3.9,<4"
2023-02-18 22:19:24 +08:00
bilibili-api-python = "^15.1.0"
2023-02-21 17:50:53 +08:00
sanitize-filename = "^1.2.0"
2023-02-21 19:56:22 +08:00
bottle = "^0.12.23"
2023-03-04 18:18:39 +08:00
pywebview = "^4.0.2"
2023-03-04 18:33:59 +08:00
pygobject = [{ version = "^3.42.2", platform = "linux" }]
2023-02-18 22:19:24 +08:00
[tool.poetry.group.dev.dependencies]
black = "^23.1.0"
[[tool.poetry.source]]
name = "mirrors"
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
default = true
secondary = false
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"