-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (59 loc) · 1.97 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (59 loc) · 1.97 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "agent-coderag"
version = "1.3.1"
description = "Lightweight semantic code search and distillation utility for AI coding agents. It solves the API knowledge gap via real-time local signature extraction and intent analysis without PyTorch. Optimized for token efficiency, it compresses codebase context into compact semantic summaries stored in a local DuckDB vector similarity index."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "MIT" }
authors = [
{ name = "Igor Boloban", email = "naranor@gmail.com" }
]
keywords = ["rag", "ai-agents", "semantic-search", "code-analysis", "context-compression", "onnx", "local-embeddings"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Text Processing :: Indexing",
]
dependencies = [
"duckdb",
"numpy",
"litellm",
"onnxruntime",
"tokenizers",
"pydantic",
"httpx",
"aiofiles",
"pathspec",
"tree-sitter",
"dnfile",
"defusedxml",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-asyncio",
"pytest-cov",
"prospector[with_mypy,with_bandit,with_vulture]",
"ruff",
"pre-commit"
]
[project.urls]
Homepage = "https://github.com/naranor/agent-coderag"
Repository = "https://github.com/naranor/agent-coderag"
Issues = "https://github.com/naranor/agent-coderag/issues"
Changelog = "https://github.com/naranor/agent-coderag/blob/main/CHANGELOG.md"
[project.scripts]
agent-coderag = "code_rag.entry.cli:main"
[tool.setuptools]
package-data = {"*" = ["*.md"]}
[tool.setuptools.packages.find]
include = ["code_rag*"]