forked from nazarli-shabnam/git-explain
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (45 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
50 lines (45 loc) · 1.31 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "git-explain"
description = "CLI that suggests git add/commit from diffs using Gemini"
readme = "README.md"
requires-python = ">=3.10"
dynamic = ["version"]
license = "MIT"
authors = [
{ name = "nazarli-shabnam" },
]
keywords = ["git", "cli", "commit", "ai", "gemini"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Version Control :: Git",
]
urls = { Homepage = "https://github.com/nazarli-shabnam/git-explain", Source = "https://github.com/nazarli-shabnam/git-explain" }
dependencies = [
"google-genai>=1.50.0",
"typer>=0.12.0",
"rich>=13.0.0",
"python-dotenv>=1.0.0",
"prompt_toolkit>=3.0.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0.0",
"ruff>=0.8.0",
]
[project.scripts]
git-explain = "git_explain.cli:app"
[tool.setuptools.packages.find]
where = ["."]
include = ["git_explain*"]
[tool.setuptools.dynamic]
version = { attr = "git_explain.__version__" }