-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (73 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
83 lines (73 loc) · 1.77 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "kirara-ai"
version = "3.3.0a2"
authors = [
{ name="Lss233", email="i@lss233.com" },
]
description = "A framework for building AI agents"
readme = "README.md"
requires-python = ">=3.10"
# mcp组件仅支持python3.10及以上版本
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
license = "AGPL-3.0-only"
license-files = ["LICENSE"]
dependencies = [
"pydantic>=2.0.0",
"pydantic-core>=2.27.2",
"ruamel.yaml",
"pytest",
"pytest-asyncio",
"python-telegram-bot",
"telegramify-markdown",
"loguru",
"aiohttp",
"requests",
"quart>=0.18.4",
"quart-cors>=0.7.0",
"fastapi>=0.110.0",
"wechatpy",
"pycryptodome",
"redis[hiredis]",
"bcrypt>=4.0.1",
"PyJWT>=2.8.0",
"hypercorn>=0.15.0",
"psutil>=5.9.0",
"setuptools",
"tomli>=2.0.0",
"pre-commit",
"curl_cffi",
"python-magic ; platform_system != 'Windows'",
"python-magic-bin ; platform_system == 'Windows'",
"ymbotpy",
"Pillow",
"pytz",
"sqlalchemy",
"alembic",
"mcp",
"pygls",
"jedi",
"pyflakes",
]
[project.scripts]
kirara_ai = "kirara_ai.__main__:main"
[project.urls]
"Homepage" = "https://github.com/lss233/chatgpt-mirai-qq-bot"
"Bug Tracker" = "https://github.com/lss233/chatgpt-mirai-qq-bot/issues"
"Documentation" = "https://kirara-docs.app.lss233.com"
[tool.setuptools.packages.find]
where = ["."]
include = ["kirara_ai*"]
namespaces = true
[[tool.uv.index]]
url = "https://mirrors.ustc.edu.cn/pypi/simple"
default = true
[options]
include_package_data = true
[tool.mypy]
disable_error_code = "override, assignment, annotation-unchecked, import-untyped"