-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
61 lines (51 loc) · 1.2 KB
/
pyproject.toml
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
60
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "mcp-azure-devops"
description = "A Model Context Protocol (MCP) server for Azure DevOps"
version = "0.6.0"
authors = [
{name = "Atle H. Havsø", email = "atle@havso.net"},
]
requires-python = ">=3.10"
readme = "README.md"
license = {file = "LICENSE"}
dependencies = [
"azure-devops>=7.1.0b4",
"mcp>=0.1.0",
]
[project.scripts]
mcp-azure-devops = "mcp_azure_devops.server:main"
[project.urls]
"Homepage" = "https://github.com/Vortiago/mcp-azure-devops"
"Bug Tracker" = "https://github.com/Vortiago/mcp-azure-devops/issues"
[project.optional-dependencies]
dev = [
"mcp[cli]>=0.1.0",
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"ruff>=0.0.267",
"anyio>=3.6.2",
"pyright>=1.1.350",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = "test_*.py"
python_functions = "test_*"
[tool.ruff]
line-length = 79
target-version = "py310"
extend-exclude = ["docs"]
[tool.ruff.lint]
select = ["E", "F", "I"]
[tool.pyright]
exclude = [
"**/node_modules",
"**/__pycache__",
"**/.*",
"docs/",
"pyproject.toml"
]