From fb279264d7d3db83faf56e8b0aa310bfd5f6702c Mon Sep 17 00:00:00 2001 From: Chuck Danielsson Date: Sat, 3 May 2025 19:10:51 -0400 Subject: [PATCH 1/3] update job name --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5f79d2f..9ba56d9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,7 +8,7 @@ on: workflow_dispatch: jobs: - ruff: + lint-format-test: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 From 3dabd2870a261e6bb59eff823adc9ac89f50178e Mon Sep 17 00:00:00 2001 From: Chuck Danielsson Date: Sat, 3 May 2025 19:14:31 -0400 Subject: [PATCH 2/3] ignore dist --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index a7b76cc..465e41f 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ TODO __pycache__ .pytest_cache *.*.swp +dist From 98cd7e7b7423603578f65c374d57efbe7cd31689 Mon Sep 17 00:00:00 2001 From: Chuck Danielsson Date: Sat, 3 May 2025 19:23:45 -0400 Subject: [PATCH 3/3] update project metadata --- pyproject.toml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 74a30e7..836fdcb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,11 +12,13 @@ license = "MIT" authors = [ { name = "Chuck Danielsson" } ] +keywords = ["git", "branch", "git-tools", "developer-tools", "version-control", "cli"] classifiers = [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", + "Natural Language :: English", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", @@ -24,9 +26,14 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Topic :: Software Development :: Version Control :: Git", + "Topic :: Utilities", ] dependencies = [] +[project.urls] +"Homepage" = "https://github.com/dcchuck/lbranch" +"Source Code" = "https://github.com/dcchuck/lbranch" + [project.scripts] lbranch = "lbranch.main:main"