-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (56 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
68 lines (56 loc) · 1.72 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
[build-system]
requires = ["setuptools>=67.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "explainthisrepo"
version = "0.26.1"
description = "The fastest way to understand any codebase in plain English using real project signals. Not blind AI summarization"
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.9,<4.0"
license = { text = "MIT" }
authors = [
{ name = "Caleb Wodi", email = "calebwodi33@gmail.com" }
]
keywords = ["cli", "codebase-understanding", "repo-analysis", "code-explanation", "developer-tools"]
dependencies = [
"requests>=2.31,<3.0",
"rich>=15.0.0"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Environment :: Console",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.optional-dependencies]
gemini = ["google-genai>=1.0.0,<2.0"]
openai = ["openai>=1.0.0,<3.0"]
anthropic = ["anthropic>=0.34,<1.0"]
groq = ["groq>=0.9,<1.0"]
dev = [
"pytest>=7.0",
"black>=23.0",
"ruff>=0.1.0",
"mypy>=1.0",
]
[tool.setuptools.packages.find]
where = ["."]
include = ["explain_this_repo*"]
[project.urls]
Homepage = "https://explainthisrepo.com"
Repository = "https://github.com/calchiwo/ExplainThisRepo"
"Bug Tracker" = "https://github.com/calchiwo/ExplainThisRepo/issues"
[project.scripts]
explainthisrepo = "explain_this_repo.cli:main"
explain-this-repo = "explain_this_repo.cli:main"
etr = "explain_this_repo.cli:main"
[tool.black]
line-length = 88
target-version = ["py39"]
[tool.ruff]
line-length = 88
select = ["E", "F", "I"]