-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 924 Bytes
/
pyproject.toml
File metadata and controls
35 lines (31 loc) · 924 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
[project]
name = "mcp-server-py2many"
version = "0.1.1"
description = "MCP Server for py2many - transpile Python to multiple languages"
readme = "README.md"
requires-python = ">=3.12"
authors = [
{ name = "Your Name", email = "your.email@example.com" },
]
keywords = ["mcp", "py2many", "transpiler", "python", "code-generation"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"mcp>=1.26.0",
"py2many[llm]>=0.7",
]
[project.scripts]
mcp-server-py2many = "mcp_server_py2many.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/mcp_server_py2many"]
[tool.uv]
dev-dependencies = []