-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (67 loc) · 1.89 KB
/
Copy pathpyproject.toml
File metadata and controls
77 lines (67 loc) · 1.89 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[project]
name = "mcp-teams-server"
version = "1.0.10"
description = "An MCP server implementation for Microsoft Teams integration"
readme = "README.md"
keywords = ["mcp", "llm", "automation", "Microsoft Teams"]
authors = [{ name = "Industria de Diseño Textil S.A." }]
maintainers = [
{ name = "Mariano Alonso Ortiz", email = "marianoao@inditex.com" },
]
license = { text = "Apache-2.0" }
requires-python = ">=3.10"
dependencies = [
"microsoft-agents-authentication-msal>=0.8.0",
"microsoft-agents-activity>=0.8.0",
"microsoft-agents-hosting-core>=0.8.0",
"microsoft-agents-hosting-teams>=0.8.0",
"microsoft-agents-hosting-aiohttp>=0.8.0",
"python-dotenv>=1.2.1",
"mcp[cli]==1.27.2",
"msgraph-sdk>=1.58.0",
"setuptools>=82.0.1",
]
[project.urls]
Repository = "https://github.com/InditexTech/mcp-teams-server"
Issues = "https://github.com/InditexTech/mcp-teams-server/issues"
[project.scripts]
mcp-teams-server = "mcp_teams_server:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"mock>=5.2.0",
"pyproject-parser[cli]>=0.14.0",
"pyright>=1.1.410",
"pytest>=8.4.2",
"pytest-asyncio>=1.4.0",
"pytest-cov>=7.1.0",
"reuse>=5.0.2",
"ruff>=0.15.15",
]
[tool.uv]
package = true
[tool.uv.extra-build-dependencies]
mcp-teams-server = ["setuptools"]
[tool.ruff]
line-length = 88
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
ignore = []
[tool.ruff.lint.per-file-ignores]
"src/mcp_teams_server/teams.py" = ["E501"]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v --tb=short --import-mode=importlib --strict-markers -m \"not integration\""
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "session"
markers = [
"integration: integration tests",
]
filterwarnings = [
"ignore::DeprecationWarning"
]