-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (73 loc) · 2.13 KB
/
Copy pathpyproject.toml
File metadata and controls
79 lines (73 loc) · 2.13 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
[project]
name = "metaops"
version = "0.2.0"
description = "Enterprise-grade autonomous AI agent with persistent memory, multi-provider LLM support, and automated workflows, built on Google ADK 2.3.0"
requires-python = ">=3.10"
dependencies = [
# Agent framework
"google-adk[extensions]>=2.3.0,<2.4.0",
# LLM routing (via ADK LiteLlm)
"litellm>=1.83.7,<2",
# Data validation
"pydantic>=2.12,<3",
# Environment configuration
"python-dotenv>=1.0.0",
# CLI interface
"prompt_toolkit>=3.0.0",
# Background scheduler
"apscheduler>=3.10.4",
# Telegram gateway
"python-telegram-bot>=20.0",
# Vector memory
"chromadb>=1.0.0",
# OpenAI SDK (for embeddings + local LLM drivers)
"openai>=1.12.0",
# Anthropic SDK (native driver for anthropic/minimax providers —
# google-adk imports it but does not declare it as a hard dependency)
"anthropic>=0.43.0",
# Local embeddings (ONNX)
"onnxruntime>=1.16.0",
# Web search
"tavily-python>=0.3.0",
# Async SQLite
"aiosqlite>=0.21",
# HTTP client
"httpx>=0.27",
# MCP protocol
"mcp>=1.24,<2",
# File parsers for RAG
"beautifulsoup4>=4.12.0",
"html2text>=2024.1.0",
"python-docx>=1.0.0",
"python-pptx>=0.6.23",
"PyMuPDF>=1.24.0",
"pdfplumber>=0.11.0",
"PyYAML>=6.0",
# Security auditing
"bandit>=1.7.0",
"pip-audit>=2.7.0",
"rich>=13.0.0",
]
[project.optional-dependencies]
# striprtf versions on PyPI are 0.0.x — ">=0.8.0" could never resolve
rtf = ["striprtf>=0.0.26"]
# Legacy .doc parsing shells out to the antiword/catdoc SYSTEM binaries
# (see memory/parsers.py) — antiword is not a pip package, install it with
# your OS package manager if you need .doc support.
[project.scripts]
metaops = "metaops.main:run"
metaops-monitor = "metaops.gateway.monitor:main"
[dependency-groups]
dev = [
"pytest>=8.0.0",
"mypy>=1.8.0",
"ruff>=0.3.0",
"codespell>=2.2.0",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.codespell]
skip = "./SOURCE,./claudeaudit.md,./src/metaops/gateway/telegram.py"
[tool.mypy]
exclude = ["SOURCE"]