-
Notifications
You must be signed in to change notification settings - Fork 18
/
pyproject.toml
40 lines (36 loc) · 1014 Bytes
/
pyproject.toml
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]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]
[project]
authors = [{name = "Stephan Fitzpatrick", email = "[email protected]"}]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13"
]
description = "90% of what you need for LLM app development. Nothing you don't."
license = {file = "LICENSE"}
name = "promptic"
dynamic = ["version"]
dependencies = [
"jsonschema>=4.23.0",
"litellm~=1.38",
"pydantic~=2.7",
]
readme = "README.md"
requires-python = ">=3.11"
[project.urls]
Home = "https://github.com/knowsuchagency/promptic"
[tool.uv]
dev-dependencies = [
"pytest-cov>=6.0.0",
"pytest>=8.3.3",
"pytest-xdist>=3.6.1",
"tenacity~=9.0.0",
"pre-commit>=4.0.1",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]