Metadata-Version: 2.1
Name: hello-gh-actions
Version: 0.0.4
Summary: This package demonstrates building and publishing Python Packages with GitHubs infrastructure
Home-page: UNKNOWN
Author: Sören Wegener
Author-email: soerface@flipdot.org
License: UNKNOWN
Project-URL: Source Code, https://github.com/soerface/template-python-package
Project-URL: Bug Tracker, https://github.com/soerface/template-python-package/issues
Project-URL: Documentation, https://hello-gh-actions.readthedocs.io
Platform: UNKNOWN
Description-Content-Type: text/markdown

# Template

This is a template repository for building Python packages. It allows you to quickstart
your Python package.

## Using it

- Click on [Use this template](https://github.com/soerface/template-flask-bootstrap/generate)
- Customize a couple files:
  - Rename directory `./hello_gh_actions/` to your desired package name
    - Also change `./hello_gh_actions/__init__.py` accordingly
  - Replace project details in `./setup.cfg`
  - Add your name in `./LICENSE`
- Create an account on [readthedocs](https://readthedocs.org/) and connect this repository
- Create an account on [PyPI](https://pypi.org) and generate an API-Key for your project

Go to your repositories "Settings -> Secrets" page and add the `PYPI_API_KEY` secret with the key you received from PyPI.

Below is a README template for your project, so remove everything above this line.

---

# Hello GitHub Actions!

TODO: CHANGE BADGE URLS AFTER FORKING

[![Documentation Status](https://readthedocs.org/projects/hello-gh-actions/badge/?version=latest)](https://hello-gh-actions.readthedocs.io/en/latest/?badge=latest)
[![Tests Status](https://github.com/soerface/template-python-package/workflows/CI/badge.svg)](https://github.com/soerface/template-python-package/actions?query=workflow%3ACI)

- Documentation: https://hello-gh-actions.readthedocs.io
- PyPI: https://pypi.org/project/hello-gh-actions

## Getting started

Installation via pip:

    pip install hello_gh_actions

Using the fizzbuzz:

    >>> from hello_gh_actions.fizzbuzz import fizzbuzz
    >>> fizzbuzz(35)
    'fizzbuzz'



