-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (61 loc) · 1.48 KB
/
pyproject.toml
File metadata and controls
69 lines (61 loc) · 1.48 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "coderetrx"
version = "0.2.0beta"
description = "Library for Code Analysis via Static Analysis and LLMs"
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.12"
dependencies = [
"attrs>=25.3.0",
"git-python>=1.0.3",
"httpx>=0.27.2",
"ignore-python>=0.2.0",
"json-repair>=0.46.0",
"nanoid>=2.0.0",
"pydantic>=2.11.4",
"pydantic-settings>=2.9.1",
"python-dotenv>=1.1.0",
"python-git>=2018.2.1",
"tomli-w>=1.2.0",
"tree-sitter>=0.25.2",
"tree-sitter-language-pack>=0.7.3",
"openai>=1.0.0",
"qdrant-client>=1.12.0",
"tenacity>=9.1.2",
"aiofiles>=24.1.0",
"tiktoken>=0.9.0",
"filetype>=1.2.0",
"mcp>=1.13.1",
"starlette>=0.47.3",
"anyio>=4.9.0",
"pytest-asyncio>=1.2.0",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["coderetrx*"]
exclude = []
namespaces = false
[dependency-groups]
dev = [
"httpx[socks]>=0.28.1",
"ipython>=9.2.0",
"pytest>=8.3.5",
"rich>=14.0.0",
"black",
"anthropic>=0.40.0",
"claude-code-sdk>=0.0.25",
]
[project.optional-dependencies]
stats = ["tiktoken>=0.9.0"]
cli = ["typer>=0.16.0"]
redis = ["redis>=5.0.0"]
chromadb = ["chromadb>=0.4.0"]
[tool.pytest.ini_options]
asyncio_default_fixture_loop_scope = "function"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.package-data]
"coderetrx" = ["**/*.scm", "**/*.py"]