-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 828 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 828 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
39
40
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "promptterfly"
version = "0.1.0"
description = "A self-evolving prompt manager that automatically optimizes your prompts — smart, easy access, and always improving."
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
dependencies = [
"typer>=0.9.0",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"rich>=13.0",
"litellm>=1.0,<2.0",
"dspy>=2.0,<3.0",
"pyyaml>=6.0",
]
[project.optional-dependencies]
test = [
"pytest>=7.0",
"pytest-cov>=4.0",
"typer[all]",
]
dev = [
"ruff>=0.3.0",
"pre-commit>=3.0",
]
[project.scripts]
promptterfly = "promptterfly.cli:app"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]