-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 1.07 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
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "prompt-refinery"
version = "0.2.0"
description = "Retrieval-grounded prompt refinement as a reusable Python library, CLI, and MCP server."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "GPL-3.0-only" }
authors = [
{ name = "Alpay" }
]
dependencies = [
"datasets>=2.20.0",
"huggingface_hub>=0.23.0",
"numpy>=1.26.0",
"requests>=2.32.0"
]
keywords = ["prompt", "retrieval", "nlp", "mcp", "llm"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
]
[project.optional-dependencies]
dev = [
"pytest>=8.2.0"
]
[project.scripts]
prompt-refinery = "prompt_refinery.cli:main"
prompt-refinery-mcp = "prompt_refinery.mcp_server:main"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
include = ["prompt_refinery*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-q"