-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (35 loc) · 970 Bytes
/
pyproject.toml
File metadata and controls
39 lines (35 loc) · 970 Bytes
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
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "tokioai"
version = "3.3.0"
description = "TokioAI — Autonomous AI Agent for Security and Infrastructure"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "GPL-3.0"}
authors = [{name = "TokioAI"}]
dependencies = [
"fastapi>=0.115.0",
"uvicorn[standard]>=0.32.0",
"pydantic>=2.9.0",
"python-dotenv>=1.0.0",
"anthropic>=0.43.0",
"openai>=1.60.0",
"google-generativeai>=0.8.0",
"psycopg2-binary>=2.9.9",
"aiohttp>=3.10.0",
"httpx>=0.27.0",
"docker>=7.1.0",
"fpdf2>=2.8.0",
"python-pptx>=1.0.0",
"pyyaml>=6.0",
"rich>=13.9.0",
"pyreadline3>=3.4; sys_platform == 'win32'",
]
[project.scripts]
tokio = "tokio_agent.cli:main"
tokioai = "tokio_cli.interactive:main"
tokio-ops = "tokio_cli.tokio_ops:main"
[tool.setuptools.packages.find]
include = ["tokio_agent*", "tokio_cli*"]