-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "teloscript-mcp"
version = "1.0.0"
description = "TELOSCRIPT MCP Server - Recursive agent orchestration through MCP protocol"
authors = [{name = "TELOSCRIPT Team"}]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"fastapi>=0.115.12",
"uvicorn>=0.34.3",
"pydantic>=2.9.0",
"docker>=7.1.0",
"httpx>=0.27.0,<0.28.0",
"python-multipart>=0.0.12",
"aiofiles>=24.1.0",
"loguru>=0.7.2",
"typer>=0.12.0",
"rich>=13.9.0",
"pydantic-settings>=2.6.0",
"mcp>=1.1.0",
"openai==1.35.0",
"python-dotenv>=1.0.1",
"distro>=1.9.0",
"tqdm>=4.66.0",
"typing-extensions>=4.8.0",
]
[project.scripts]
teloscript-mcp = "teloscript_mcp.launcher:main"
teloscript-mcp-server = "teloscript_mcp.launcher:main"
[tool.setuptools]
packages = ["teloscript_mcp", "teloscript_mcp.src", "teloscript_mcp.config"]
package-dir = {"teloscript_mcp" = "mcp_server", "teloscript_mcp.src" = "src", "teloscript_mcp.config" = "config"}
[tool.setuptools.package-data]
"teloscript_mcp" = ["*.py"]
"teloscript_mcp.src" = ["*.py"]
"teloscript_mcp.config" = ["*.json"]