mirror of
https://github.com/LiteyukiStudio/LiteyukiBot.git
synced 2024-11-15 01:34:38 +08:00
🚸 添加发布工作流
This commit is contained in:
parent
d5b0f947e0
commit
4b4f030fe3
1
.gitignore
vendored
1
.gitignore
vendored
@ -48,3 +48,4 @@ prompt.txt
|
|||||||
|
|
||||||
# pdm
|
# pdm
|
||||||
.pdm-python
|
.pdm-python
|
||||||
|
dist
|
@ -1,3 +1,5 @@
|
|||||||
|
from git import Repo
|
||||||
|
|
||||||
from liteyuki.bot import (
|
from liteyuki.bot import (
|
||||||
LiteyukiBot,
|
LiteyukiBot,
|
||||||
get_bot,
|
get_bot,
|
||||||
@ -21,14 +23,16 @@ from liteyuki.log import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"LiteyukiBot",
|
"LiteyukiBot",
|
||||||
"get_bot",
|
"get_bot",
|
||||||
"get_config",
|
"get_config",
|
||||||
"get_config_with_compat",
|
"get_config_with_compat",
|
||||||
"Channel",
|
"Channel",
|
||||||
"Event",
|
"Event",
|
||||||
"load_plugin",
|
"load_plugin",
|
||||||
"load_plugins",
|
"load_plugins",
|
||||||
"init_log",
|
"init_log",
|
||||||
"logger"
|
"logger"
|
||||||
]
|
]
|
||||||
|
|
||||||
|
__version__ = f"6.3.5+g{Repo('.').head.commit.hexsha}"
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
# 此文件仅供 liteyuki 框架使用,请勿用于应用程序及nb-cli,请使用pip进行安装。
|
# 此文件仅供 liteyuki 框架使用,请勿用于应用程序及nb-cli,请使用pip进行安装。
|
||||||
[project]
|
[project]
|
||||||
name = "liteyukibot"
|
name = "liteyukibot"
|
||||||
version = "6.3.2"
|
dynamic = ["version"]
|
||||||
description = "A lightweight bot process management framework and application."
|
description = "A lightweight bot process management framework and application."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.10"
|
requires-python = ">=3.10"
|
||||||
@ -33,4 +33,4 @@ requires = ["pdm-backend"]
|
|||||||
build-backend = "pdm.backend"
|
build-backend = "pdm.backend"
|
||||||
|
|
||||||
[tool.pdm]
|
[tool.pdm]
|
||||||
includes = ["liteyuki"]
|
packages = ["liteyuki"]
|
Loading…
Reference in New Issue
Block a user