-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 853 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 853 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
[project]
name = "mcp-openstack-ops"
dynamic = ["version"]
description = "OpenStack operations automation MCP server"
readme = "README.md"
requires-python = ">=3.12"
authors = [{ name = "JungJungIn", email = "call518@gmail.com" }]
dependencies = [
"fastmcp>=2.12.3",
"openstacksdk>=4.1.0,<=4.11.0",
"python-dotenv>=1.1.1",
"setuptools-scm>=10.0.5",
"pre-commit>=4.6.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0"
]
[project.scripts]
mcp-openstack-ops = "mcp_openstack_ops.mcp_main:main"
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
local_scheme = "no-local-version"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-dir]
"" = "src"