-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
58 lines (51 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
58 lines (51 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "github-mcp"
version = "0.1.0"
description = "Model Context Protocol (MCP) server for GitHub integration"
readme = "README.md"
requires-python = ">=3.9"
license = "MIT"
authors = [
{ name = "Garot Conklin" }
]
dependencies = [
"fastapi>=0.104.0",
"uvicorn>=0.24.0",
"pydantic>=2.4.2",
"PyGithub>=2.1.1",
"python-dotenv>=1.0.0",
"sse-starlette>=1.6.5",
"httpx>=0.25.0",
"githubauthlib>=1.0.1",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.3",
"pytest-asyncio>=0.21.1",
"black>=23.10.1",
"isort>=5.12.0",
"mypy>=1.6.1",
"ruff>=0.1.3",
]
[tool.black]
line-length = 88
target-version = ["py39"]
[tool.isort]
profile = "black"
multi_line_output = 3
[tool.mypy]
python_version = "3.9"
strict = true
ignore_missing_imports = true
[tool.ruff]
line-length = 88
target-version = "py39"
select = ["E", "F", "B", "I", "N", "UP", "PL", "RUF"]
ignore = []
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
python_files = ["test_*.py"]