mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-11 04:07:23 +08:00
📝 恢复pyproject.toml
This commit is contained in:
parent
263b78e995
commit
6ef3b09ec9
1
.gitignore
vendored
1
.gitignore
vendored
@ -18,7 +18,6 @@ compile.bat
|
||||
src/resources/templates/latest-debug.html
|
||||
# vuepress
|
||||
.github
|
||||
pyproject.toml
|
||||
|
||||
test.py
|
||||
line_count.py
|
||||
|
38
pyproject.toml
Normal file
38
pyproject.toml
Normal file
@ -0,0 +1,38 @@
|
||||
[tool.nonebot]
|
||||
[project]
|
||||
# PEP 621 project metadata
|
||||
# See https://www.python.org/dev/peps/pep-0621/
|
||||
authors = [
|
||||
{name = "SnowyKami", email = "snowykami@outlook.com"},
|
||||
]
|
||||
license = {text = "MIT & LSO"}
|
||||
requires-python = ">=3.10,<4.0"
|
||||
dependencies = [
|
||||
|
||||
]
|
||||
|
||||
dynamic = ["version"]
|
||||
name = "liteyuki-bot"
|
||||
description = "Push dynamics and live informations from bilibili to QQ. Based on nonebot2."
|
||||
readme = "README.md"
|
||||
keywords = ["nonebot", "nonebot2", "qqbot", "liteyuki", "bot"]
|
||||
|
||||
[project.urls]
|
||||
homepage = "https://bot.liteyuki.icu"
|
||||
repository = "https://github.com/LiteyukiStudio/LiteyukiBot"
|
||||
documentation = "https://bot.liteyuki.icu"
|
||||
|
||||
[tool.pdm.dev-dependencies]
|
||||
dev = []
|
||||
|
||||
[tool.nonebot]
|
||||
adapters = [
|
||||
{ name = "OneBot V11", module_name = "nonebot.adapters.onebot.v11" }
|
||||
|
||||
]
|
||||
plugins = ["haruka_bot", "nonebot_plugin_gocqhttp", "nonebot_plugin_guild_patch"]
|
||||
plugin_dirs = []
|
||||
builtin_plugins = []
|
||||
|
||||
[project.scripts]
|
||||
ly = "main.py"
|
@ -26,5 +26,6 @@ watchdog~=4.0.0
|
||||
pillow~=10.2.0
|
||||
jieba~=0.42.1
|
||||
pip~=23.2.1
|
||||
aiosqlite3~=0.3.0
|
||||
fastapi~=0.110.0
|
||||
python-dotenv~=1.0.1
|
@ -3,7 +3,7 @@ from nonebot.plugin import PluginMetadata
|
||||
__author__ = "snowykami"
|
||||
__plugin_meta__ = PluginMetadata(
|
||||
name="轻雪包管理器v2",
|
||||
description="详细看文档",
|
||||
description="npm & rpm",
|
||||
usage=(
|
||||
"npm list\n"
|
||||
"npm enable/disable <plugin_name>\n"
|
||||
@ -13,8 +13,9 @@ __plugin_meta__ = PluginMetadata(
|
||||
type="application",
|
||||
homepage="https://github.com/snowykami/LiteyukiBot",
|
||||
extra={
|
||||
"liteyuki": True,
|
||||
"toggleable" : False,
|
||||
"default_enable" : False,
|
||||
"liteyuki" : True,
|
||||
"toggleable" : False,
|
||||
"always_on" : True,
|
||||
"default_enable": False,
|
||||
}
|
||||
)
|
0
src/plugins/packmanv2/handle.py
Normal file
0
src/plugins/packmanv2/handle.py
Normal file
0
src/plugins/packmanv2/npm/__init__.py
Normal file
0
src/plugins/packmanv2/npm/__init__.py
Normal file
6
src/plugins/packmanv2/npm/data_source.py
Normal file
6
src/plugins/packmanv2/npm/data_source.py
Normal file
@ -0,0 +1,6 @@
|
||||
class Session:
|
||||
def __init__(self, session_type: str, session_id: int | str):
|
||||
self.session_type = session_type
|
||||
self.session_id = session_id
|
||||
|
||||
|
0
src/plugins/packmanv2/rpm/__init__.py
Normal file
0
src/plugins/packmanv2/rpm/__init__.py
Normal file
Loading…
Reference in New Issue
Block a user