Files
gitea_mcp/pyproject.toml
l3ocho a48824e19f chore: bump version to v1.0.1
- Improved test suite with environment isolation
- All 82 tests passing
2026-02-08 18:03:19 -05:00

41 lines
843 B
TOML

[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "gitea-mcp"
version = "1.0.1"
description = "MCP server for Gitea — issues, PRs, wikis, milestones, merges"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
authors = [
{ name = "Leo Miranda" }
]
keywords = ["mcp", "gitea", "claude", "tools", "model-context-protocol"]
dependencies = [
"mcp>=0.9.0",
"python-dotenv>=1.0.0",
"requests>=2.31.0",
"pydantic>=2.5.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.3",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.0.0",
]
[project.scripts]
gitea-mcp = "gitea_mcp.server:main"
[tool.setuptools.packages.find]
where = ["."]
include = ["gitea_mcp*"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]