-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (34 loc) · 802 Bytes
/
pyproject.toml
File metadata and controls
39 lines (34 loc) · 802 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "codebase-cartographer"
version = "0.1.0"
description = "Stage 0 foundation for Brownfield Cartographer."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
dependencies = [
"httpx>=0.27,<1.0",
"langgraph>=0.2,<1.0",
"langchain-openai>=0.2,<1.0",
"networkx>=3.4,<4.0",
"pydantic>=2.7,<3.0",
"pydantic-settings>=2.2,<3.0",
"sqlglot>=25.0,<27.0",
"tree-sitter>=0.25.2",
"tree-sitter-language-pack>=0.13.0",
"typer>=0.12,<1.0",
]
[dependency-groups]
dev = [
"pytest>=8.0,<9.0",
]
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.pytest.ini_options]
addopts = "-q"
cache_dir = ".test-pytest-cache"
testpaths = ["tests"]
[tool.uv]
default-groups = ["dev"]