Skip to content

Commit 0ff948e

Browse files
Prepare for publishing
1 parent d0ca002 commit 0ff948e

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

pyproject.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[build-system]
2-
requires = ["hatchling"]
3-
build-backend = "hatchling.build"
2+
requires = ["setuptools>=61.0"]
3+
build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "git-ai-summarize"
@@ -39,5 +39,6 @@ dependencies = [
3939
[project.scripts]
4040
git-summarize = "git_ai_summarize.summarize:main"
4141

42-
[tool.hatch.build.targets.wheel]
43-
packages = ["src/git_ai_summarize"]
42+
[project.urls]
43+
Homepage = "https://github.com/kevinmbeaulieu/git-ai-summarize"
44+
Issues = "https://github.com/kevinmbeaulieu/git-ai-summarize/issues"

src/git_ai_summarize/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from .summarize import main

src/git_ai_summarize/summarize.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env python3
12
import argparse
23
import asyncio
34
import os

0 commit comments

Comments
 (0)