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 diff --git a/.gitignore b/.gitignore index a7b76cc..465e41f 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ TODO __pycache__ .pytest_cache *.*.swp +dist 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"