generated from personal-projects/leo-claude-mktplace
feat: initialize Python project structure
- Create pyproject.toml with project metadata - Add dependencies: mcp, httpx, python-dotenv - Set up src/gitea_mcp package structure with __init__.py files - Create placeholder server.py for MCP server implementation - Add tools subdirectory for future tool implementations - Create tests directory structure - Update .gitignore with comprehensive Python exclusions - Add README.md with project overview Uses modern src-layout with pyproject.toml (no setup.py). Project is ready for MCP server implementation. Closes #1 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
50
pyproject.toml
Normal file
50
pyproject.toml
Normal file
@@ -0,0 +1,50 @@
|
||||
[build-system]
|
||||
requires = ["setuptools>=61.0", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
||||
[project]
|
||||
name = "gitea-mcp-remote"
|
||||
version = "0.1.0"
|
||||
description = "MCP server for Gitea API integration"
|
||||
readme = "README.md"
|
||||
requires-python = ">=3.10"
|
||||
license = { text = "MIT" }
|
||||
authors = [
|
||||
{ name = "Leo Miranda", email = "lmiranda@example.com" }
|
||||
]
|
||||
keywords = ["mcp", "gitea", "api", "server"]
|
||||
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 = [
|
||||
"mcp>=0.1.0",
|
||||
"httpx>=0.24.0",
|
||||
"python-dotenv>=1.0.0",
|
||||
]
|
||||
|
||||
[project.optional-dependencies]
|
||||
dev = [
|
||||
"pytest>=7.0.0",
|
||||
"pytest-asyncio>=0.21.0",
|
||||
]
|
||||
|
||||
[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 = ["tests"]
|
||||
python_files = ["test_*.py"]
|
||||
python_classes = ["Test*"]
|
||||
python_functions = ["test_*"]
|
||||
Reference in New Issue
Block a user