-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 844 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 844 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
[project]
name = "mcp-prompt-optimizer"
version = "0.0.1"
description = "MCP tool to analyze and optimize prompts from the prompt_engineering repository"
readme = "README.md"
requires-python = ">=3.10,<3.14"
dependencies = [
"mcp>=1.0.0",
"pyyaml>=6.0",
"tiktoken>=0.5.0",
"transformers>=4.30.0",
"pydantic>=2.0.0",
"typing-extensions>=4.5.0",
"toon-format @ git+https://github.com/toon-format/toon-python.git",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
[project.scripts]
mcp-prompt-optimizer = "src.mcp_server:cli_main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
dev-dependencies = [
"pytest>=7.0.0",
"pytest-asyncio>=0.21.0",
"black>=23.0.0",
"ruff>=0.1.0",
]