-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 829 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 829 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "anton"
dynamic = ["version"]
description = "Autonomous coding copilot"
requires-python = ">=3.11"
dependencies = [
"anthropic>=0.42.0",
"openai>=1.0",
"pydantic>=2.0",
"pydantic-settings>=2.0",
"typer>=0.12.4",
"rich>=13.0",
"prompt-toolkit>=3.0",
"packaging>=21.0",
"pyyaml>=6.0",
"dill==0.3.8",
]
[project.optional-dependencies]
dev = [
"pytest>=9.0.0",
"pytest-asyncio>=0.24",
]
clipboard = [
"Pillow>=12.2.0",
]
[project.scripts]
anton = "anton.cli:app"
[tool.hatch.version]
source = "regex"
path = "anton/__init__.py"
[tool.pytest.ini_options]
asyncio_mode = "auto"
pythonpath = ["."]
markers = [
"stub_only: test requires stub server (skipped when --live is passed)",
]