Skip to content

Commit c583f71

Browse files
committed
Prep and publish initial PyPI release v0.1.0
1 parent 91cc011 commit c583f71

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

commit_companion/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
"""Commit Companion: AI-assisted commit message generator."""
2+
3+
__version__ = "0.1.0"

pyproject.toml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,17 @@ build-backend = "flit_core.buildapi"
44

55
[project]
66
name = "commit_companion"
7+
version = "0.1.0"
8+
description = "Smarter Git commit messages using GPT."
79
authors = [{name = "Zack Nelson", email = "zacknelson15@gmail.com"}]
810
readme = "README.md"
911
license = "MIT"
1012
license-files = ["LICENSE"]
11-
dynamic = ["version", "description"]
13+
requires-python = ">=3.8"
14+
keywords = ["git", "cli", "openai", "commit", "automation"]
1215

1316
[project.urls]
1417
Home = "https://github.com/nelson-zack/commit-companion"
18+
19+
[project.scripts]
20+
commit-companion = "commit_companion.cli:cli"

0 commit comments

Comments
 (0)