-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
161 lines (152 loc) · 4.73 KB
/
pyproject.toml
File metadata and controls
161 lines (152 loc) · 4.73 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
160
161
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mcp-vibe-agent"
version = "1.0.0"
description = "Production-ready multi-agent framework with web UI, terminal, and Jupyter integration"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "MCP Vibe Agent Team", email = "contact@mcpvibeagent.com"}
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
requires-python = ">=3.8"
dependencies = [
"requests>=2.31.0",
"pyyaml>=6.0",
"rich>=13.0.0",
"click>=8.1.0",
"aiohttp>=3.9.0",
"python-dotenv>=1.0.0",
"cryptography>=41.0.0",
"numpy>=1.24.0",
"google-generativeai>=0.3.0",
"openai>=1.0.0",
"groq>=0.4.0",
"anthropic>=0.7.0",
"ddgs>=9.4.0",
"beautifulsoup4>=4.12.0",
"WebSearchApi>=1.0.0",
"lxml>=5.0.0",
"chromadb>=0.4.0",
"scikit-learn>=1.3.0",
"pygls>=1.1.1",
"lsprotocol>=2023.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"flake8>=6.0.0",
"mypy>=1.5.0",
]
jupyter = [
"ipython>=8.0.0",
"jupyter>=1.0.0",
"nest-asyncio>=1.5.8",
"notebook>=7.0.0",
]
web = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"websockets>=12.0",
"jinja2>=3.1.0",
"python-multipart>=0.0.6",
]
search = [
"ddgs>=9.4.0",
"beautifulsoup4>=4.12.0",
"WebSearchApi>=1.0.0",
"lxml>=5.0.0",
]
ide = [
"python-lsp-server>=1.8.0",
"pylsp-mypy>=0.6.0",
"python-lsp-black>=1.3.0",
]
all = [
"fastapi>=0.104.0",
"uvicorn[standard]>=0.24.0",
"websockets>=12.0",
"jinja2>=3.1.0",
"python-multipart>=0.0.6",
"ipython>=8.0.0",
"jupyter>=1.0.0",
"nest-asyncio>=1.5.8",
"notebook>=7.0.0",
"googlesearch-python>=1.2.0",
"beautifulsoup4>=4.12.0",
"selenium>=4.15.0",
"requests-html>=0.10.0",
"python-lsp-server>=1.8.0",
"pylsp-mypy>=0.6.0",
"python-lsp-black>=1.3.0",
"pygls>=1.1.1",
"lsprotocol>=2023.0.0",
]
[project.scripts]
vibe-agent = "mcp_vibe_agent.cli:main"
vibe-agent-v2 = "mcp_vibe_agent.cli:main"
vibe-pro = "mcp_vibe_agent.professional_cli:main"
vibe-web = "mcp_vibe_agent.web.server:start_server"
vibe-terminal = "mcp_vibe_agent.terminal.terminal_interface:main"
vibe-chat = "mcp_vibe_agent.terminal.interactive:main"
vibe-code = "mcp_vibe_agent.terminal.agents:code_terminal"
vibe-debug = "mcp_vibe_agent.terminal.agents:debug_terminal"
vibe-security = "mcp_vibe_agent.terminal.agents:security_terminal"
vibe-refactor = "mcp_vibe_agent.terminal.agents:refactor_terminal"
vibe-test = "mcp_vibe_agent.terminal.agents:test_terminal"
vibe-docs = "mcp_vibe_agent.terminal.agents:docs_terminal"
vibe-exec = "mcp_vibe_agent.terminal.commands:exec_command"
vibe-file = "mcp_vibe_agent.terminal.commands:file_command"
vibe-mcp = "mcp_vibe_agent.terminal.commands:mcp_command"
vibe-models = "mcp_vibe_agent.terminal.commands:models_command"
vibe-config = "mcp_vibe_agent.terminal.commands:config_command"
vibe-sessions = "mcp_vibe_agent.terminal.commands:sessions_command"
vibe-status = "mcp_vibe_agent.terminal.commands:status_command"
vibe-logs = "mcp_vibe_agent.terminal.commands:logs_command"
vibe-cache = "mcp_vibe_agent.terminal.commands:cache_command"
vibe-storage = "mcp_vibe_agent.terminal.commands:storage_command"
vibe-lsp = "mcp_vibe_agent.ide.language_server:start_lsp_server"
[project.urls]
Homepage = "https://github.com/mcpvibeagent/mcp-vibe-agent"
Documentation = "https://docs.mcpvibeagent.com"
Repository = "https://github.com/mcpvibeagent/mcp-vibe-agent"
Issues = "https://github.com/mcpvibeagent/mcp-vibe-agent/issues"
[tool.setuptools.packages.find]
where = ["."]
include = ["mcp_vibe_agent*"]
[tool.setuptools.package-data]
"mcp_vibe_agent.web" = ["templates/*", "static/css/*", "static/js/*"]
"mcp_vibe_agent.jupyter" = ["*.py"]
"mcp_vibe_agent.terminal" = ["*.py"]
[tool.black]
line-length = 88
target-version = ['py38']
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --tb=short"
asyncio_mode = "auto"