-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 822 Bytes
/
pyproject.toml
File metadata and controls
28 lines (25 loc) · 822 Bytes
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
[project]
name = "gitmeup"
version = "1.0.5"
description = "LLM-assisted conventional commits generator for git repositories. Automatically generates git add and commit lines based on git diff and status."
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
dependencies = [
"google-genai>=0.6.0",
"python-dotenv>=1.0.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
]
[project.scripts]
gitmeup = "gitmeup.cli:main"
[project.urls]
Homepage = "https://github.com/merakeen/gitmeup"
Source = "https://github.com/merakeen/gitmeup"
Issues = "https://github.com/merakeen/gitmeup/issues"
[build-system]
requires = ["setuptools>=61", "wheel"]
build-backend = "setuptools.build_meta"