-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (24 loc) · 778 Bytes
/
pyproject.toml
File metadata and controls
29 lines (24 loc) · 778 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
[tool.poetry]
name = "promptrefiner"
version = "0.1.0"
description = "AI Prompt Refiner CLI – polish any rough idea into multiple prompt styles."
authors = ["Prompt Refiner Team <maintainers@promptrefiner.dev>"]
readme = "README.md"
packages = [{ include = "promptrefiner", from = "src" }]
license = "MIT"
homepage = "https://github.com/oss/prompt-refiner-cli"
keywords = ["prompt", "cli", "openai", "ai", "productivity"]
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.7"
rich = "^13.7.1"
openai = "^1.47.0"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.0"
[tool.poetry.scripts]
promptref = "promptrefiner.cli:main"
[tool.pytest.ini_options]
pythonpath = ["src"]
[build-system]
requires = ["poetry-core>=1.8.0"]
build-backend = "poetry.core.masonry.api"