[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "sk-eli-mcp" version = "0.3.3" description = "MCP server for the Slovak Collection of Laws (Zbierka zakonov) via static.slov-lex.sk - Slovak legislation with national ELI identifiers and verifiable citations." readme = "README.md" license = { text = "Apache-2.0" } requires-python = ">=3.11" authors = [ { name = "Matematic Solutions", email = "kontakt@matematic.co" }, { name = "Wieslaw Mazur", email = "mazur.wieslaw2022@gmail.com" }, ] keywords = ["mcp", "legaltech", "slovakia", "eli", "slov-lex", "zbierka-zakonov", "law"] classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Legal Industry", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Topic :: Office/Business", ] dependencies = [ "fastmcp>=3.4,<4", "httpx>=0.27,<1", "pydantic>=2.6", "diskcache>=5.6", "anyio>=4.3", ] [project.optional-dependencies] dev = [ "pytest>=8.0", "pytest-asyncio>=0.23", "mypy>=1.10", "ruff>=0.5", ] [project.urls] Repository = "https://github.com/matematicsolutions/sk-eli-mcp" Issues = "https://github.com/matematicsolutions/sk-eli-mcp/issues" Homepage = "https://matematic.co" [project.scripts] sk-eli-mcp = "sk_eli_mcp.server:main" [tool.hatch.build.targets.wheel] packages = ["src/sk_eli_mcp"] [tool.ruff] line-length = 100 target-version = "py311" [tool.ruff.lint] select = ["E", "F", "I", "B", "UP", "N", "SIM", "RUF"] [tool.ruff.lint.per-file-ignores] # INSTRUCTIONS is long-form prose with Slovak diacritics in the citation example "src/sk_eli_mcp/server.py" = ["E501", "RUF001"] # Slovak citation literal "č. N/YYYY Z. z." carries the caron character "src/sk_eli_mcp/citations.py" = ["RUF001"] [tool.mypy] strict = true python_version = "3.11" warn_unused_configs = true disallow_untyped_defs = true no_implicit_optional = true check_untyped_defs = true warn_return_any = true warn_unused_ignores = true [[tool.mypy.overrides]] module = ["diskcache.*", "fastmcp.*"] ignore_missing_imports = true [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"]