-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathpyproject.toml
More file actions
159 lines (145 loc) · 4.19 KB
/
Copy pathpyproject.toml
File metadata and controls
159 lines (145 loc) · 4.19 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "avibe-os"
dynamic = ["version"]
description = "Local-first Agent OS for Web and IM agent workflows"
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [
{ name = "cyhhao", email = "cyhhao@users.noreply.github.com" }
]
keywords = [
"slack",
"discord",
"telegram",
"wechat",
"lark",
"feishu",
"ai",
"agent",
"agent-os",
"claude-code",
"opencode",
"codex",
"automation",
"chatops",
"vibe-coding",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Communications :: Chat",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"claude-agent-sdk>=0.2.93",
"anyio>=4.0.0",
"APScheduler>=3.10.4",
"slack-sdk>=3.26.0",
"discord.py>=2.4.0",
"aiohttp>=3.8.0",
"markdown-it-py>=4.2.0",
"markdown_to_mrkdwn>=0.2.0",
"typing_extensions>=4.12.2",
"PyYAML>=6.0",
"tomli>=2.0.1; python_version < '3.11'",
"fastapi>=0.110",
"lark-oapi>=1.4.0",
"requests>=2.31.0",
"sentry-sdk>=2.0.0",
"python-socks[asyncio]>=2.0.0",
"aiohttp-socks>=0.8.0",
"httpx[socks]>=0.27",
"python-multipart>=0.0.9",
"PyJWT[crypto]>=2.9.0",
"SQLAlchemy>=2.0.0",
"alembic>=1.13.0",
"psutil>=5.9.0",
"packaging>=23.0",
"uvicorn[standard]>=0.27",
"imagesize>=1.4.1",
"olefile>=0.47",
"pywebpush>=2.0.3",
"cryptography>=42.0",
# keccak256 + ripemd160 for vault signing-key address derivation
# (storage/vault_addresses.py); cryptography ships neither.
"pycryptodome>=3.20",
"prometheus-client>=0.20.0",
]
[project.urls]
Homepage = "https://github.com/avibe-bot/avibe"
Repository = "https://github.com/avibe-bot/avibe"
Documentation = "https://github.com/avibe-bot/avibe#readme"
Issues = "https://github.com/avibe-bot/avibe/issues"
[project.scripts]
vibe = "vibe.cli:main"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.hooks.vcs]
version-file = "vibe/_version.py"
[tool.hatch.build]
# Include generated assets even though they are in .gitignore (build artifacts)
artifacts = [
"ui/dist/**",
"vibe/show_runtime_manifest.json",
"vibe/tmux_runtime_manifest.json",
"vibe/git_runtime_manifest.json",
"vibe/memory_runtime_manifest.json",
"vibe/model_hub_runtime/cliproxyapi_manifest.json",
]
[tool.hatch.build.hooks.custom]
[tool.hatch.build.targets.wheel]
packages = ["vibe", "config", "core", "modules", "storage"]
[tool.hatch.build.targets.wheel.force-include]
"main.py" = "vibe/service_main.py"
"ui/dist" = "vibe/ui/dist"
[tool.hatch.build.targets.sdist]
# Include ui/dist for source distribution
include = [
"vibe/**",
"config/**",
"core/**",
"modules/**",
"storage/**",
"hatch_build.py",
"main.py",
"scripts/prepare_local_show_runtime_manifest.py",
"scripts/show_runtime_manifest_asset.py",
"ui/dist/**",
"vibe/show_runtime_manifest.json",
"vibe/tmux_runtime_manifest.json",
"vibe/git_runtime_manifest.json",
"vibe/memory_runtime_manifest.json",
"vibe/model_hub_runtime/cliproxyapi_manifest.json",
"README.md",
"LICENSE",
]
[tool.ruff]
line-length = 120
src = ["."]
[tool.ruff.lint]
select = ["E9", "F63", "F7", "F82"]
extend-ignore = ["E501"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
markers = [
"integration: tests excluded from the unit shards because they need external infrastructure (Docker + platform tokens) or minutes of real filesystem work",
"uses_real_paths: opt out of the autouse home/config isolation so the test can exercise real path resolvers (must remain read-only)",
"no_sqlite_template: opt out of the pre-migrated SQLite template for migration/bootstrap tests",
]
[dependency-groups]
dev = [
"jsonschema>=4.26.0",
"pytest>=9.0.3",
"pytest-asyncio>=1.4.0",
]