-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (40 loc) · 1.04 KB
/
pyproject.toml
File metadata and controls
45 lines (40 loc) · 1.04 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
# AI install hint: choose deps by OS/env + needed ui/bot. do NOT install all.
# minimal core first; missing packages can be installed on demand.
[project]
name = "genericagent"
version = "0.1.0"
description = "Minimalist self-evolving autonomous agent framework"
readme = "README.md"
requires-python = ">=3.10,<3.14"
license = { text = "MIT" }
dependencies = [
"requests>=2.28",
"beautifulsoup4>=4.12",
"bottle>=0.12",
"simple-websocket-server>=0.4",
]
[project.optional-dependencies]
# select extras, not all. match current task/env.
# examples: .[ui] for GUI, bot deps only if bot needed.
ui = [
"streamlit>=1.28",
"pywebview>=4.0",
"textual>=0.70",
]
all-frontends = [
"python-telegram-bot>=20.0",
"qq-botpy>=1.0",
"pycryptodome>=3.19",
"qrcode>=7.4",
"lark-oapi>=1.0",
"wecom-aibot-sdk>=1.0",
"dingtalk-stream>=0.20",
]
[build-system]
requires = ["setuptools>=68.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
py-modules = []
packages = ["ga_cli"]
[project.scripts]
ga = "ga_cli.cli:main"