[build-system] requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [project] name = "data-platform-mcp" version = "1.0.0" description = "MCP Server for data engineering with pandas, PostgreSQL/PostGIS, and dbt" readme = "README.md" license = {text = "MIT"} requires-python = ">=3.10" authors = [ {name = "Leo Miranda"} ] classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", ] dependencies = [ "mcp>=0.9.0", "pandas>=2.0.0", "pyarrow>=14.0.0", "asyncpg>=0.29.0", "geoalchemy2>=0.14.0", "shapely>=2.0.0", "dbt-core>=1.9.0", "dbt-postgres>=1.9.0", "python-dotenv>=1.0.0", "pydantic>=2.5.0", ] [project.optional-dependencies] dev = [ "pytest>=7.4.3", "pytest-asyncio>=0.23.0", ] [tool.setuptools.packages.find] where = ["."] include = ["mcp_server*"] [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["tests"]