[build-system] requires = ["hatchling"] build-backend = "hatchling.build" [project] name = "mcp-nfe-br" version = "0.9.1" description = "MCP server for Brazilian electronic invoicing (NF-e / NFC-e), direct-to-SEFAZ, no intermediary" readme = "README.md" license = { text = "Apache-2.0" } authors = [{ name = "Cristian Mendez", email = "cmendezs@users.noreply.github.com" }] keywords = [ "mcp", "model-context-protocol", "einvoicing", "e-invoicing", "brazil", "brasil", "nfe", "nfce", "sefaz", ] classifiers = [ "Development Status :: 3 - Alpha", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", "Topic :: Office/Business :: Financial", "Topic :: Software Development :: Libraries :: Python Modules", "Typing :: Typed", ] requires-python = ">=3.11" dependencies = [ "mcp-einvoicing-core>=1.34.1,<2.0.0", "pydantic>=2.0.0", "lxml>=5.0.0", ] [project.optional-dependencies] dev = [ "pytest>=8.0.0", "pytest-asyncio>=0.23.0", "pytest-cov>=5.0.0", "ruff>=0.4.0", "mypy>=1.10.0", "lxml-stubs>=0.5.1", "pre-commit>=4.5.1", ] [project.scripts] mcp-nfe-br = "mcp_nfe_br.server:main" [project.urls] Homepage = "https://github.com/cmendezs/mcp-nfe-br" Repository = "https://github.com/cmendezs/mcp-nfe-br" Issues = "https://github.com/cmendezs/mcp-nfe-br/issues" Changelog = "https://github.com/cmendezs/mcp-nfe-br/blob/main/RELEASE.md" [tool.hatch.build.targets.wheel] packages = ["src/mcp_nfe_br"] [tool.hatch.build.targets.sdist] exclude = ["mcp-publisher", "dist/", ".github/", "specs/**/*.pdf", "specs/**/*.zip"] [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"] addopts = "--cov=mcp_nfe_br --cov-report=term-missing" [tool.ruff] line-length = 100 target-version = "py311" [tool.ruff.lint] select = ["E", "F", "I", "N", "W", "UP"] ignore = ["N999", "E501"] [tool.mypy] python_version = "3.11" strict = true warn_return_any = true warn_unused_configs = true plugins = ["pydantic.mypy"] [[tool.mypy.overrides]] module = ["mcp_einvoicing_core", "mcp_einvoicing_core.*"] ignore_missing_imports = true