-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 840 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 840 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
[project]
name = "mcp-sl"
version = "0.2.2"
description = "MCP server for allowing AI to interact with ScienceLogic products"
readme = "README.md"
authors = [
{ name = "caleb burch", email = "caleb.burch@sciencelogic.com" }
]
requires-python = ">=3.12"
dependencies = [
"fastmcp>=2.12.2",
"httpx>=0.28.1",
"pydantic>=2.11.7",
"starlette>=0.48.0",
"uvicorn>=0.35.0",
]
[dependency-groups]
dev = [
"autopep8>=2.3.2",
"pylint>=4.0.2",
"pytest>=8.4.2",
"pytest-asyncio>=1.1.0",
]
[project.scripts]
mcp-sl = "mcp_sl.main:main"
[build-system]
requires = ["uv_build>=0.8.15,<0.9.0"]
build-backend = "uv_build"
[tool.pylint.messages_control]
disable = [
"C0116", #missing-function-doctstring
"C0115", #missing-class-docstring
"C0114", #missing-module-docstring
"C0301", # line-too-long
]