-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
43 lines (35 loc) · 1.15 KB
/
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
41
42
43
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "pydantic_ai_deepagent"
description = "Reasoning model integration for pydantic-ai's agent"
keywords = ["pydantic_ai_deepagent", "pydantic-ai"]
requires-python = ">=3.9"
dependencies = ["pydantic-ai-slim>=0.0.24", "openai"]
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
]
[project.optional-dependencies]
test = ["pytest", "pytest-asyncio", "pytest-cov", "dirty-equals"]
docs = ["Sphinx", "pydata-sphinx-theme", "sphinx-click", "autodoc_pydantic"]
[[project.authors]]
name = "wh1isper"
email = "[email protected]"
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.license]
text = "BSD 3-Clause License"
[project.urls]
Source = "https://github.com/wh1isper/pydantic_ai_deepagent"
[tool.check-manifest]
ignore = [".*"]
[tool.hatch.version]
path = "pydantic_ai_deepagent/__init__.py"