[project] name = "bolsai-mcp" version = "0.1.4" description = "MCP server for bolsai Brazilian financial data API" requires-python = ">=3.10" license = "MIT" authors = [{ name = "bolsai" }] readme = "README.md" keywords = ["mcp", "finance", "brazil", "stocks", "b3", "bolsai"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Topic :: Office/Business :: Financial", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", ] dependencies = [ "mcp>=1.0", "httpx>=0.28", ] [project.urls] Homepage = "https://usebolsai.com" Repository = "https://github.com/viniciuslazzari/bolsai-mcp" Documentation = "https://usebolsai.com/mcp" Issues = "https://github.com/viniciuslazzari/bolsai-mcp/issues" [project.optional-dependencies] dev = [ "pytest>=8.0", "pytest-asyncio>=0.24", "respx>=0.22", "ruff>=0.9", ] [project.scripts] bolsai-mcp = "bolsai_mcp.server:main" [build-system] requires = ["hatchling"] build-backend = "hatchling.build" [tool.hatch.build.targets.wheel] packages = ["src/bolsai_mcp"] [tool.ruff] target-version = "py311" line-length = 100 [tool.pytest.ini_options] testpaths = ["tests"] asyncio_mode = "auto"