-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (46 loc) · 1.05 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
44
45
46
47
48
49
50
51
52
53
54
55
[project]
name = "tono-ai"
version = "0.1.2"
description = "A framework for building autonomous AI agents"
readme = "README.md"
requires-python = ">=3.11"
dependencies = [
"bs4>=0.0.2",
"docstring-parser>=0.16",
"httpx>=0.27.2",
"python-dotenv>=1.0.1",
"rich>=13.9.2",
"typer>=0.12.5",
]
[tool.uv]
package = true
override-dependencies = ["greenlet==3.1.0"]
dev-dependencies = ["mypy>=1.13.0", "pytest>=8.3.3"]
[tool.pytest.ini_options]
minversion = "8.0"
[project.scripts]
tono = "tono.cli:app"
[project.optional-dependencies]
openai = ["openai>=1.52.0"]
anthropic = ["anthropic>=0.37.1"]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/tono"]
exclude = ["src/tono/tests", "docs"]
[tool.mypy]
disable_error_code = "import-untyped"
[[tool.mypy.overrides]]
module = [
"openai.*",
"anthropic.*",
"rich.*",
"typer.*",
"httpx.*",
"docstring_parser.*",
]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ["tests.*"]
ignore_errors = true