-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (49 loc) · 1.4 KB
/
pyproject.toml
File metadata and controls
56 lines (49 loc) · 1.4 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
[project]
name = "pylib2mcp"
dynamic = ["version"]
description = "Expose Python library functions as MCP server tools"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
]
license = {file = "LICENSE"}
readme = "README.md"
requires-python = ">=3.10,<3.14"
dependencies = [
"fastmcp==2.8.1",
"pydantic>=2.11.7",
"typer>=0.16.0",
]
# ---------------- Dev ----------------
[dependency-groups]
dev = [
"black>=25.1.0",
"pytest>=8.4.1",
"pytest-asyncio>=1.0.0",
"ruff>=0.12.12",
"tox>=4.27.0",
"tox-uv>=1.26.1",
]
[tool.ruff.lint]
ignore = [
"E731", # Assigning lambda functions to variables.
"E501", # Line too long.
]
# ---------------- Build ----------------
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/pylib2mcp/__init__.py"
[project.scripts]
pylib2mcp = "pylib2mcp.cli:app"