-
Notifications
You must be signed in to change notification settings - Fork 82
/
Copy pathpyproject.toml
73 lines (64 loc) · 1.56 KB
/
pyproject.toml
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
70
71
72
73
[project]
authors = [
{name = "Qinyu Luo", email = "[email protected]"},
]
maintainers = [
{name = "Edwards Arno", email = "[email protected]"},
]
license = {text = "Apache-2.0"}
requires-python = ">=3.11,<4.0"
dependencies = [
"loguru>=0.7.2",
"jedi>=0.19.1",
"GitPython>=3.1.41",
"prettytable>=3.9.0",
"python-iso639>=2024.2.7",
"pydantic-settings>=2.2.1",
"click>=8.1.7",
"python-iso639>=2024.10.22",
"colorama>=0.4.6",
"llama-index-llms-openai-like>=0.3.3",
]
name = "repoagent"
version = "0.2.0"
description = "An LLM-Powered Framework for Repository-level Code Documentation Generation."
readme = "README.md"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
[project.urls]
repository = "https://github.com/LOGIC-10/RepoAgent"
[project.scripts]
repoagent = "repo_agent.main:cli"
[project.optional-dependencies]
chat_with_repo = [
"markdown>=3.7",
"llama-index-embeddings-openai>=0.2.5",
"llama-index-vector-stores-chroma>=0.3.0",
"gradio>=5.6.0",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pyright]
reportCallIssue="none"
[tool.ruff]
# General ruff settings can stay here.
[tool.ruff.lint]
select = ["I001"]
[tool.pdm]
[tool.pdm.dev-dependencies]
test = [
"pytest<8.0.0,>=7.4.4",
"pytest-mock<4.0.0,>=3.12.0",
]
lint = [
"ruff>=0.7.4",
]
[tool.pdm.build]
includes = [
"repo_agent",
]