-
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) · 1.03 KB
/
Copy pathpyproject.toml
File metadata and controls
46 lines (39 loc) · 1.03 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "batman-cli"
version = "0.1.0"
description = "Batman-themed AI coding assistant TUI powered by deepagents."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.11,<4.0"
keywords = ["batman", "ai", "cli", "terminal", "tui", "agents"]
dependencies = [
"textual>=6.0.0,<8.0.0",
"rich>=14.0.0,<15.0.0",
"python-dotenv>=1.0.0,<2.0.0",
"deepagents>=0.4.0",
"deepagents-cli>=0.0.21",
"langchain>=1.2.10,<2.0.0",
"langchain-core>=1.2.10,<2.0.0",
"Pillow>=10.0.0",
]
[project.scripts]
bat-code = "batman_code:cli_main"
[tool.hatch.build.targets.wheel]
packages = ["batman_code"]
[tool.uv.sources]
deepagents = { path = "../deepagents", editable = true }
deepagents-cli = { path = "../cli", editable = true }
[dependency-groups]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
asyncio_mode = "auto"
filterwarnings = [
"ignore::DeprecationWarning",
]