Files
omnara-agent-monitor/pyproject.toml
Kartik Sarangmath 912b8e0472 reduces deps
2025-07-09 14:03:38 -07:00

75 lines
1.7 KiB
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "omnara"
version = "1.1.0"
description = "Omnara Agent Dashboard - MCP Server and Python SDK"
readme = "README.md"
requires-python = ">=3.11"
license = "MIT"
authors = [
{name = "Omnara", email = "ishaan@omnara.com"}
]
keywords = ["mcp", "ai", "agents", "dashboard"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
# Core SDK dependencies
"requests>=2.25.0",
"urllib3>=1.26.0",
"aiohttp>=3.8.0",
# MCP server dependency
"fastmcp==2.9.2",
]
[project.urls]
Homepage = "https://github.com/omnara-ai/omnara"
Repository = "https://github.com/omnara-ai/omnara"
Issues = "https://github.com/omnara-ai/omnara/issues"
[project.scripts]
omnara = "servers.mcp_server.stdio_server:main"
[tool.setuptools.packages.find]
include = ["omnara*", "servers.mcp_server*", "servers.shared*"]
[tool.pytest.ini_options]
# Test discovery
testpaths = ["backend/tests", "servers/tests", "tests"]
python_files = ["test_*.py"]
# Markers
markers = [
"integration: marks tests as integration tests (deselect with '-m \"not integration\"')",
]
# Asyncio support
asyncio_mode = "auto"
# Basic options
addopts = [
"-v",
"--strict-markers",
"--tb=short",
]
[tool.coverage.run]
source = ["backend", "servers", "omnara", "shared"]
omit = [
"*/tests/*",
"*/__pycache__/*",
"*/migrations/*",
"*/alembic/*",
]
[tool.coverage.report]
skip_covered = true
show_missing = true