[build-system] requires = ["setuptools>=68"] build-backend = "setuptools.build_meta" [project] name = "thinchain" version = "0.1.1" description = "MCP server that sanitizes bad broker data and compresses options chains 95% for AI trading agents." readme = "README.md" license = {text = "MIT"} requires-python = ">=3.11" keywords = ["mcp", "options", "trading", "fintech", "ai-agents"] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "Intended Audience :: Financial and Insurance 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.13", "Topic :: Office/Business :: Financial :: Investment", "Topic :: Software Development :: Libraries", ] dependencies = [ "fastmcp>=0.1.0", "httpx>=0.27.0", "pydantic>=2.0.0", "python-dotenv>=1.0.0", ] [project.optional-dependencies] dev = [ "pytest>=8.0.0", "pytest-asyncio>=0.23.0", ] [project.scripts] thinchain = "thinchain.server:main" [project.urls] Homepage = "https://github.com/SnipMCP/thinchain" Repository = "https://github.com/SnipMCP/thinchain" Issues = "https://github.com/SnipMCP/thinchain/issues" [tool.setuptools.packages.find] where = ["src"]