-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (36 loc) · 918 Bytes
/
Copy pathpyproject.toml
File metadata and controls
42 lines (36 loc) · 918 Bytes
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
[project]
name = "perfecto-mcp"
version = "1.1.1"
description = "MCP server for Perfecto Cloud Platform"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"httpx[http2]>=0.28.1",
"mcp[cli]>=1.27.0",
"opentelemetry-api>=1.20.0",
"opentelemetry-sdk>=1.20.0",
"opentelemetry-exporter-otlp>=1.20.0",
"pyjwt>=2.12.0",
"starlette>=0.47.3",
"pyinstaller>=6.17.0",
"pydantic>=2.11.7",
"pydantic-core>=2.33.2",
"pydantic-settings>=2.10.1",
"lxml>=5.3.0",
]
[project.scripts]
perfecto-mcp = "main:main"
[tool.setuptools]
py-modules = ["main", "server", "telemetry"]
include-package-data = true
[dependency-groups]
dev = [
"pytest>=9.0.2",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["tools*", "config", "models", "formatters", "resources"]
[tool.setuptools.package-data]
"resources" = ["*.png"]
[tool.pytest.ini_options]
pythonpath = ["."]