-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpyproject.toml
35 lines (31 loc) · 963 Bytes
/
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
[tool.poetry]
name = "telegram-bili-feed-helper"
version = "0.1.0"
description = ""
authors = ["simonsmh"]
license = "GPLv3"
readme = "README.md"
packages = [{ include = "biliparser" }]
[tool.poetry.dependencies]
python = "^3.13"
aiomysql = "^0.2.0"
asyncpg = "^0.30.0"
beautifulsoup4 = "^4.12.3"
httpx = {extras = ["http2"], version = "^0.28.1"}
loguru = "^0.7.3"
lxml = "^5.3.0"
pillow = "^11.0.0"
python-telegram-bot = {extras = ["all"], version = "^21.10"}
redis = "^5.2.1"
telegraph = {extras = ["aio"], version = "^2.2.0"}
tortoise-orm = {extras = ["accel"], version = "^0.23.0"}
bilibili-api-python = {git = "https://github.com/Nemo2011/bilibili-api.git", rev = "3d797bcd367317912e8cd7b5933d70f74c53eab9"}
tqdm = "^4.67.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-asyncio = "^0.23.8"
[tool.poetry.scripts]
bilifeedbot = "biliparser.__main__:main"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"