[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aistack-mcp"
version = "1.1.0"
description = "Enterprise-Grade MCP Orchestration for Modern Development"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "AIStack-MCP Contributors"}
]
keywords = ["mcp", "ollama", "qdrant", "ai", "code-intelligence"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Homepage = "https://github.com/mjdevaccount/AIStack-MCP"
Repository = "https://github.com/mjdevaccount/AIStack-MCP"
Issues = "https://github.com/mjdevaccount/AIStack-MCP/issues"
Documentation = "https://github.com/mjdevaccount/AIStack-MCP/docs"
[tool.black]
line-length = 100
target-version = ['py38', 'py39', 'py310', 'py311']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.venv
| venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 100
skip_gitignore = true
known_first_party = ["mcp_intelligence_server", "python_agent"]
[tool.pylint.messages_control]
max-line-length = 100
disable = [
"C0103", # Invalid name (too restrictive)
"C0114", # Missing module docstring
"R0913", # Too many arguments
"R0914", # Too many local variables
]
[tool.mypy]
python_version = "3.8"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
ignore_missing_imports = true
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = [
"-v",
"--tb=short",
"--strict-markers",
"--color=yes",
]
markers = [
"unit: Unit tests (fast, no external dependencies)",
"integration: Integration tests (may require services)",
"slow: Slow tests (> 1 second)",
"requires_services: Tests that need Ollama/Qdrant running",
]
asyncio_mode = "auto"
[tool.coverage.run]
source = ["."]
branch = true
omit = [
"*/tests/*",
"*/venv/*",
"*/.venv/*",
"*/site-packages/*",
"*/__pycache__/*",
"*/conftest.py",
"setup.py",
]
[tool.coverage.report]
precision = 2
skip_empty = true
show_missing = true
exclude_lines = [
"pragma: no cover",
"def __repr__",
"raise AssertionError",
"raise NotImplementedError",
"if __name__ == .__main__.:",
"if TYPE_CHECKING:",
"@abstractmethod",
]