Skip to content

Commit

Permalink
If this works, it will publish version 2.2 All future commits to mast…
Browse files Browse the repository at this point in the history
…er will publish a new version.
  • Loading branch information
Isaak-Malers committed Feb 28, 2024
1 parent a751c2f commit 1502b31
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/publish-package.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Deploy to PyPI
name: publish-package

on:
push:
Expand All @@ -25,3 +25,4 @@ jobs:
- name: Build and publish
run: |
python -m build
python -m twine upload -u __token__ -p ${{ secrets.PYPI_ACCESS_TOKEN }} dist/*
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ build-backend = "hatchling.build"

[project]
name = "clifunction"
version = "0.2.1"
version = "0.2.2"
authors = [
{ name="Isaak Malers", email="isaak.malers+clifunction@gmail.com" },
]
description = "Build a fully featured CLI for your python project with minium effort"
readme = "PyPI_Readme.md"
readme = "docs/Example.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
Expand All @@ -20,11 +20,14 @@ classifiers = [
[project.urls]
"Homepage" = "https://github.com/Isaak-Malers/clifunction"
"Bug Tracker" = "https://github.com/Isaak-Malers/clifunction/issues"
"Documentation" = "https://isaak-malers.github.io/clifunction/"


[tool.hatch.build]
include = ["CliFunction.py"]
exclude = [
"Example.py",
"/docs",
"/test"
"/test",
"/_site"
]

0 comments on commit 1502b31

Please sign in to comment.