-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 889 Bytes
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 889 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
41
42
43
44
45
46
[project]
name = "they"
version = "0.1.0"
description = "They are just yet another AI Agent."
readme = "README.md"
requires-python = ">=3.14"
dependencies = [
"openai-agents[litellm]",
"rich>=14.0.0",
"python-dotenv>=1.0.0",
"prompt_toolkit>=3.0.0",
]
[tool.uv]
package = true
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"coverage>=7.13.4",
]
[tool.hatch.build.targets.wheel]
packages = ["src", "main.py"]
[project.scripts]
they = "main:main_sync"
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.24.0",
"ruff>=0.15.0",
]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests"]
asyncio_mode = "auto"
asyncio_default_fixture_loop_scope = "function"
filterwarnings = [
"ignore:'asyncio.iscoroutinefunction' is deprecated:DeprecationWarning:litellm",
]