-
Notifications
You must be signed in to change notification settings - Fork 64
/
pyproject.toml
66 lines (58 loc) · 1.38 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
[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",
"openai>=1.10.0",
"gradio>=4.16.0",
"markdown>=3.5.2",
"pyyaml>=6.0.1",
"jedi>=0.19.1",
"GitPython>=3.1.41",
"chromadb>=0.4.22",
"prettytable>=3.9.0",
"python-iso639>=2024.2.7",
"pydantic-settings>=2.2.1",
"tomli>=2.0.1",
"tomli-w>=1.0.0",
"colorama>=0.4.6",
"llama-index-llms-openai>=0.2.12",
]
name = "repoagent"
version = "0.1.4"
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"
[tool.pdm]
[tool.pdm.dev-dependencies]
dev = [
"ruff>=0.1.14",
]
test = [
"pytest<8.0.0,>=7.4.4",
"pytest-mock<4.0.0,>=3.12.0",
]
[tool.pdm.build]
includes = [
"repo_agent",
]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool.pyright]
reportCallIssue="none"