-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.1 KB
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
36
37
38
39
40
41
42
43
44
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "murainbot"
version = "0.4.2"
authors = [
{ name="Xiaosu", email="xiaosu@xiaosu.icu" },
]
description = "一个基于python适配onebot11协议的轻量级Onebot框架/QQ机器人框架/QQBot框架"
requires-python = ">=3.12"
dependencies = [
"requests>=2.31.0",
"PyYAML>=6.0",
"Flask>=3.0.0",
"Werkzeug>=3.0.0",
"typer>=0.9.0",
"rich>=13.0.0"
]
readme = "README.md"
license-files = ["LICENSE"]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Robot Framework",
"Framework :: Robot Framework :: Library",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12"
]
[project.urls]
Homepage = "https://github.com/MuRainBot/MuRainBot2"
Repository = "https://github.com/MuRainBot/MuRainBot2"
Documentation = "https://mrb2.xiaosu.icu/"
"Bug Tracker" = "https://github.com/MuRainBot/MuRainBot2/issues"
[project.scripts]
murainbot = "murainbot.cli:main"
[tool.setuptools.packages.find]
include = ["murainbot*"]