[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "atomno-mcp-zakupki" version = "0.2.0" description = "MCP-сервер для российских госзакупок (zakupki.gov.ru, 44-ФЗ / 223-ФЗ / 615-ПП): поиск, карточка закупки, карточка организации, справочник ОКПД2." readme = "README.md" requires-python = ">=3.11" license = { text = "MIT" } authors = [{ name = "atomno-mcp", email = "hello@atomno.ru" }] keywords = [ "mcp", "model-context-protocol", "zakupki", "russia", "44-fz", "223-fz", "615-pp", "tenders", "procurement", "b2g", "okpd2", "ktru", "eis", "eruz", "rnp", "fas", "russian-procurement", ] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Financial and Insurance Industry", "Intended Audience :: Legal Industry", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3 :: Only", "Framework :: AsyncIO", "Natural Language :: Russian", "Topic :: Office/Business :: Financial", "Topic :: Software Development :: Libraries :: Python Modules", "Typing :: Typed", ] dependencies = [ "fastmcp>=3.0.0,<4.0.0", "httpx>=0.27.0,<1.0.0", "pydantic>=2.6.0,<3.0.0", "aiosqlite>=0.20.0,<1.0.0", "selectolax>=0.3.21,<1.0.0", "tenacity>=8.5.0,<10.0.0", "python-dateutil>=2.9.0,<3.0.0", ] [project.urls] Homepage = "https://github.com/atomno-mcp/mcp-zakupki" Repository = "https://github.com/atomno-mcp/mcp-zakupki" Issues = "https://github.com/atomno-mcp/mcp-zakupki/issues" Changelog = "https://github.com/atomno-mcp/mcp-zakupki/blob/main/CHANGELOG.md" Documentation = "https://github.com/atomno-mcp/mcp-zakupki#readme" [project.optional-dependencies] dev = [ "pytest>=8.0.0", "pytest-asyncio>=0.23.0", "pytest-cov>=5.0.0", "respx>=0.21.0", "ruff>=0.5.0", ] release = [ "build>=1.2.0", "twine>=5.1.0", ] eis-official = [ "zeep>=4.2.0,<5.0.0", ] [project.scripts] atomno-mcp-zakupki = "mcp_zakupki.server:main" mcp-zakupki = "mcp_zakupki.server:main" [tool.hatch.build.targets.wheel] packages = ["src/mcp_zakupki"] include = ["src/mcp_zakupki/py.typed", "src/mcp_zakupki/data/russian_trusted_ca.pem"] [tool.hatch.build.targets.sdist] include = [ "src/mcp_zakupki/**", "tests/**", "README.md", "LICENSE", "CHANGELOG.md", "pyproject.toml", ".env.example", ] exclude = [ "**/__pycache__/**", "**/*.pyc", "**/*.sqlite", "**/*.sqlite-journal", ".venv/**", ".pytest_cache/**", ".coverage", "htmlcov/**", "dist/**", "build/**", "*.egg-info/**", ] [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"] addopts = "-v --strict-markers" [tool.coverage.run] source = ["src/mcp_zakupki"] branch = true [tool.coverage.report] exclude_lines = [ "pragma: no cover", "raise NotImplementedError", "if __name__ == .__main__.:", ] [tool.ruff] line-length = 100 target-version = "py311" [tool.ruff.lint] select = ["E", "F", "I", "B", "UP", "ASYNC"] ignore = ["E501"]