[build-system] requires = ["setuptools>=61.0", "wheel"] build-backend = "setuptools.build_meta" [project] name = "gitea-mcp-remote" version = "0.2.0" description = "HTTP transport wrapper for Gitea MCP server" readme = "README.md" requires-python = ">=3.10" license = { text = "MIT" } authors = [ { name = "Leo Miranda", email = "lmiranda@example.com" } ] keywords = ["mcp", "gitea", "api", "server", "http", "wrapper"] classifiers = [ "Development Status :: 3 - Alpha", "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 = [ # THE MARKETPLACE PACKAGE — this is the whole point of this repo "gitea-mcp-server @ git+https://gitea.hotserv.cloud/personal-projects/leo-claude-mktplace.git#subdirectory=mcp-servers/gitea", # MCP SDK "mcp>=0.9.0", # HTTP server "uvicorn>=0.30.0", "starlette>=0.38.0", # Config (already used by existing modules) "pydantic>=2.0.0", "pydantic-settings>=2.0.0", "python-dotenv>=1.0.0", # Auth "pyjwt>=2.8.0", ] [project.optional-dependencies] dev = [ "pytest>=7.0.0", "pytest-asyncio>=0.21.0", "pytest-cov>=4.0.0", "httpx>=0.24.0", "starlette>=0.36.0", ] [project.scripts] gitea-mcp-remote = "gitea_mcp_remote.server_http:main" [project.urls] Homepage = "https://github.com/lmiranda/gitea-mcp-remote" Repository = "https://github.com/lmiranda/gitea-mcp-remote" [tool.setuptools.packages.find] where = ["src"] [tool.pytest.ini_options] asyncio_mode = "auto" testpaths = ["src/gitea_mcp_remote/tests"] python_files = ["test_*.py"] python_classes = ["Test*"] python_functions = ["test_*"]