-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpyproject.toml
58 lines (48 loc) · 1.11 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
[project]
name = "mcp-server-aliyun-observability"
version = "0.2.3"
description = "aliyun observability mcp server"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [
"mcp>=1.3.0",
"pydantic>=2.10.0",
"alibabacloud_arms20190808==8.0.0",
"alibabacloud_sls20201230==5.7.0",
"alibabacloud_credentials>=1.0.1",
"tenacity>=8.0.0",
]
[build-system]
requires = ["hatchling", "wheel", "setuptools"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = ["pyright>=1.1.389"]
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_server_aliyun_observability"]
[tool.hatch.build]
include = [
"src/**/*.py",
"README.md",
"LICENSE",
"pyproject.toml",
]
exclude = [
"**/*.pyc",
"**/__pycache__",
"**/*.pyo",
"**/*.pyd",
"**/*.png",
".git",
".env",
".gitignore",
"*.so",
"*.dylib",
"*.dll",
]
[tool.hatch.metadata]
allow-direct-references = true
[project.optional-dependencies]
dev = ["pytest", "pytest-mock", "pytest-cov"]
[project.urls]
[project.scripts]
mcp-server-aliyun-observability = "mcp_server_aliyun_observability:main"