2022-06-21 21:44:01 +08:00
|
|
|
|
[tool.poetry]
|
|
|
|
|
name = "LittlePaimon"
|
2022-07-03 21:26:33 +08:00
|
|
|
|
version = "1.0.1"
|
|
|
|
|
description = "小派蒙!原神qq群机器人,基于NoneBot2的UID查询、抽卡导出分析、模拟抽卡、实时便签、札记等多功能小助手。"
|
2022-06-21 21:44:01 +08:00
|
|
|
|
authors = ["惜月 <277073121@qq.com>"]
|
2022-07-03 21:26:33 +08:00
|
|
|
|
readme = "README.md"
|
2022-06-21 21:44:01 +08:00
|
|
|
|
license = "AGPL"
|
2022-07-03 21:26:33 +08:00
|
|
|
|
keywords = ["nonebot", "nonebot2", "mihoyo", "genshin"]
|
|
|
|
|
homepage = "https://github.com/CMHopeSunshine/LittlePaimon"
|
|
|
|
|
repository = "https://github.com/CMHopeSunshine/LittlePaimon"
|
|
|
|
|
documentation = "https://github.com/CMHopeSunshine/LittlePaimon#readme"
|
|
|
|
|
packages = [
|
|
|
|
|
{ include = "LittlePaimon/Guess_voice", from = ".."},
|
|
|
|
|
{ include = "LittlePaimon/Paimon_Calendar", from = ".."},
|
|
|
|
|
{ include = "LittlePaimon/Paimon_Chat", from = ".."},
|
|
|
|
|
{ include = "LittlePaimon/Paimon_CloudGenshin", from = ".."},
|
|
|
|
|
{ include = "LittlePaimon/Paimon_Exchange", from = ".."},
|
|
|
|
|
{ include = "LittlePaimon/Paimon_Gacha", from = ".."},
|
|
|
|
|
{ include = "LittlePaimon/Paimon_Gacha_Log", from = ".."},
|
|
|
|
|
{ include = "LittlePaimon/Paimon_Info", from = ".."},
|
|
|
|
|
{ include = "LittlePaimon/Paimon_Plugins", from = ".."},
|
|
|
|
|
{ include = "LittlePaimon/Paimon_Wiki", from = ".."},
|
|
|
|
|
{ include = "LittlePaimon/utils", from = ".."},
|
|
|
|
|
{ include = "LittlePaimon/__init__.py", from = ".."},
|
|
|
|
|
{ include = "LittlePaimon/resource_list.json", from = ".."}
|
|
|
|
|
]
|
2022-06-21 21:44:01 +08:00
|
|
|
|
|
|
|
|
|
[[tool.poetry.source]]
|
|
|
|
|
name = "ali"
|
|
|
|
|
default = true
|
|
|
|
|
url = "https://mirrors.aliyun.com/pypi/simple/"
|
|
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
|
|
|
|
python = "^3.8"
|
|
|
|
|
nonebot2 = "^2.0.0-beta.4"
|
|
|
|
|
nonebot-adapter-onebot = "^2.0.0-beta.1"
|
|
|
|
|
nonebot-plugin-apscheduler = "^0.1.2"
|
|
|
|
|
nonebot-plugin-htmlrender = "^0.0.4.6"
|
|
|
|
|
beautifulsoup4 = "^4.10.0"
|
2022-06-21 21:52:52 +08:00
|
|
|
|
httpx = "^0.23.0"
|
2022-06-21 21:44:01 +08:00
|
|
|
|
lxml = "^4.8.0"
|
|
|
|
|
Pillow = "^9.1.0"
|
|
|
|
|
matplotlib = "^3.5.1"
|
|
|
|
|
xlsxwriter = "^3.0.3"
|
|
|
|
|
sqlitedict = "^2.0.0"
|
|
|
|
|
aiofiles = "^0.8.0"
|
2022-07-03 21:26:33 +08:00
|
|
|
|
littlepaimon_utils = "^1.0.2"
|
2022-06-21 21:44:01 +08:00
|
|
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
|
build-backend = "poetry.core.masonry.api"
|