[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "agent-orchestration-platform"
version = "0.1.0"
description = "Sophisticated multi-agent Claude Code orchestration through FastMCP"
authors = [
{name = "ADDER+ Agents", email = "agents@example.com"}
]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.10"
keywords = ["ai", "agents", "mcp", "orchestration", "claude"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"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",
]
dependencies = [
"fastmcp>=0.1.0",
"aiofiles>=0.8.0",
"asyncio",
"cryptography>=41.0.0",
"pathlib",
"dataclasses",
"typing-extensions>=4.0.0",
"pydantic>=2.0.0",
"PyContracts>=1.8.0",
]
[project.optional-dependencies]
dev = [
# Core testing framework
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-cov>=4.1.0",
"pytest-xdist>=3.3.0", # Parallel test execution
"pytest-mock>=3.11.0",
"pytest-benchmark>=4.0.0",
"pytest-timeout>=2.1.0",
# Property-based testing
"hypothesis>=6.80.0",
# Security testing
"bandit>=1.7.0",
"safety>=3.0.0",
# Code quality
"mypy>=1.5.0",
"black>=23.0.0",
"isort>=5.12.0",
"flake8>=6.0.0",
"pre-commit>=3.3.0",
# Development utilities
"ipython>=8.0.0",
"jupyter>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/adder-agents/agent-orchestration-platform"
Documentation = "https://docs.agent-orchestration-platform.dev"
Repository = "https://github.com/adder-agents/agent-orchestration-platform.git"
Issues = "https://github.com/adder-agents/agent-orchestration-platform/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.md", "*.yml", "*.yaml", "*.json"]
# Pytest Configuration
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py", "*_test.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
asyncio_mode = "auto"
# timeout = 300 # 5 minutes default timeout
addopts = [
"--strict-markers",
"--strict-config",
"--tb=short",
"--disable-warnings",
"-v",
]
markers = [
"unit: Unit tests",
"integration: Integration tests",
"property: Property-based tests",
"properties: Property-based tests (alternative name)",
"message_sanitization: Message sanitization tests",
"security: Security tests",
"performance: Performance benchmarks",
"slow: Slow-running tests",
"external: Tests requiring external services",
"interfaces: Interface/API tests",
"boundaries: Boundary tests",
"contracts: Contract tests",
"core: Core functionality tests",
"types: Type system tests",
"validators: Validation tests",
"mocks: Mock-based tests",
"strategies: Test strategy tests",
"concurrent: Concurrency tests",
"fixtures: Fixture tests",
"mcp_tools: MCP tools integration tests",
"session_status: Session status tests",
]
filterwarnings = [
"error",
"ignore::UserWarning",
"ignore::DeprecationWarning",
"ignore::PendingDeprecationWarning",
]
# Coverage Configuration
[tool.coverage.run]
source = ["src"]
branch = true
omit = [
"tests/*",
"src/main.py", # Entry point excluded
"*/conftest.py",
"*/__pycache__/*",
"*/venv/*",
"*/.venv/*",
]
[tool.coverage.report]
exclude_lines = [
"pragma: no cover",
"def __repr__",
"def __str__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
"@abstractmethod",
"@overload",
"\\.\\.\\.",
]
show_missing = true
precision = 2
fail_under = 95
[tool.coverage.html]
directory = "coverage_html"
[tool.coverage.xml]
output = "coverage.xml"
# MyPy Configuration
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
warn_unreachable = true
strict_optional = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
show_error_codes = true
show_column_numbers = true
[[tool.mypy.overrides]]
module = [
"hypothesis.*",
"pytest.*",
"fastmcp.*",
]
ignore_missing_imports = true
# Black Configuration
[tool.black]
line-length = 88
target-version = ['py310']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| build
| dist
)/
'''
# isort Configuration
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 88
known_first_party = ["src", "tests"]
known_third_party = ["pytest", "hypothesis", "fastmcp"]
# Bandit Security Configuration
[tool.bandit]
exclude_dirs = ["tests", "venv", ".venv"]
skips = ["B101", "B601"] # Skip assert and shell usage in tests
# Additional security scan configuration
[tool.bandit.assert_used]
skips = ["*_test.py", "test_*.py", "conftest.py"]