pyproject.tomlā¢1.69 kB
[project]
name = "mcp-standards"
version = "0.1.0-alpha.2"
description = "Self-learning AI standards system - learns from corrections and auto-updates CLAUDE.md"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{name = "Matt Strautmann", email = "matt.strautmann@gmail.com"}
]
keywords = ["claude", "mcp", "ai-assistant", "self-learning", "pattern-learning", "claude-code", "sqlite", "knowledge-base"]
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",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"mcp>=1.0.0"
]
[project.urls]
Homepage = "https://github.com/airmcp-com/mcp-standards"
Documentation = "https://github.com/airmcp-com/mcp-standards#readme"
Repository = "https://github.com/airmcp-com/mcp-standards"
Issues = "https://github.com/airmcp-com/mcp-standards/issues"
[project.scripts]
mcp-standards = "mcp_standards.server:main"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_standards"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pytest>=8.4.2",
"pytest-asyncio>=1.2.0",
"pytest-cov>=7.0.0",
"pytest-mock>=3.15.1",
"ruff>=0.1.0",
"mypy>=1.0.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
python_classes = ["Test*"]
python_functions = ["test_*"]
addopts = "-v --cov=src/mcp_standards --cov-report=term-missing"