-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (50 loc) · 1.64 KB
/
pyproject.toml
File metadata and controls
59 lines (50 loc) · 1.64 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
59
[project]
name = "github-mcp-safe"
version = "1.0.0"
description = "Production-grade rate limiting for GitHub MCP servers"
authors = [{name = "Jonathan Melton", email = "jonathanmelton004@gmail.com"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.11"
keywords = ["github", "mcp", "rate-limiting", "api", "automation", "anthropic", "claude"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
]
dependencies = [
"fastmcp>=3.2.0",
"httpx>=0.28.1",
]
[project.urls]
Homepage = "https://github.com/JonathanMelton-FusionAL/github-mcp-safe"
Documentation = "https://github.com/JonathanMelton-FusionAL/github-mcp-safe#readme"
Repository = "https://github.com/JonathanMelton-FusionAL/github-mcp-safe"
Issues = "https://github.com/JonathanMelton-FusionAL/github-mcp-safe/issues"
Consulting = "https://calendly.com/jonathanmelton004/30min"
[project.scripts]
github-mcp-safe = "github_mcp_safe.server:main"
[tool.setuptools.packages.find]
where = ["src"]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.uv]
dev-dependencies = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"mypy>=1.8.0",
"ruff>=0.1.0",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true