-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (46 loc) · 1.18 KB
/
pyproject.toml
File metadata and controls
50 lines (46 loc) · 1.18 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
47
48
49
50
[build-system]
build-backend = "flit_core.buildapi"
requires = ["flit_core >=3.2,<4"]
[project]
authors = [
{name = "Pablo Schaffner", email = "pablo@puntorigen.com"}
]
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 = "async-promptic"
version = "5.5.12"
dependencies = [
"jsonschema>=4.23.0",
"litellm~=1.38",
"pydantic~=2.7",
"fix-busted-json>=0.0.18",
"stamina>=25.1.0",
"json-repair>=0.40.0",
"fastmcp>=0.1.0"
]
readme = "README.md"
requires-python = ">=3.11"
[project.urls]
Home = "https://github.com/puntorigen/async-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",
"openai>=1.58.1",
"fix-busted-json>=0.0.18",
"stamina>=25.1.0",
"json-repair>=0.40.0"
]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]