-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (45 loc) · 1.51 KB
/
pyproject.toml
File metadata and controls
57 lines (45 loc) · 1.51 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
[build-system]
requires = [ "hatchling",]
build-backend = "hatchling.build"
[project]
name = "universal-mcp-github"
version = "0.1.2"
description = "A Universal MCP Application: universal_mcp_github"
readme = "README.md"
requires-python = ">=3.11"
classifiers = [ "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.11", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent",]
dependencies = [ "universal_mcp>=0.1.22",]
[[project.authors]]
name = "Manoj Bajaj"
email = "manoj@agentr.dev"
[project.license]
text = "MIT"
[project.optional-dependencies]
test = [ "pytest>=7.0.0,<9.0.0", "pytest-cov",]
dev = [ "ruff", "pre-commit",]
[project.scripts]
universal_mcp_github = "universal_mcp_github:main"
[project.urls]
Homepage = "https://github.com/universal-mcp/github"
Repository = "https://github.com/universal-mcp/github"
[tool.ruff]
line-length = 88
select = [ "E", "W", "F", "I", "UP", "PL", "T20",]
ignore = []
[tool.ruff.format]
quote-style = "double"
[tool.hatch.version]
path = "src/universal_mcp_github/__init__.py"
[tool.coverage.run]
source = [ "src/universal_mcp_github",]
branch = true
[tool.coverage.report]
show_missing = true
fail_under = 70
[tool.hatch.envs.default]
dependencies = [ "pytest", "pytest-cov",]
[tool.hatch.envs.default.scripts]
test = "pytest {args:tests}"
test-cov = "pytest --cov-report term-missing --cov-config=pyproject.toml --cov=src/universal_mcp_github --cov=tests {args:tests}"
lint = "ruff check . && ruff format --check ."
format = "ruff format ."