A simple greeting python package.
To install the package, use the command below:
pip install pygreet
from helloworld import say_hello
# Generate "Hello, World!"
say_hello()
# Generate "Hello, Everybody!"
say_hello('Everybody!')
To prepare the dev environment, you need to run the command below in your virtualenv:
$ pip install -e .[dev]
To build the source code using, use the command below:
$ python setup.py bdist_wheel sdist
To publish the source distribution run the command below:
$ pip install twine
$ twine upload dist/*
When using the docker compose setup, make sure to execute the commands below:
$ apk add --update --no-cache --virtual .tmp-build-deps gcc libc-dev linux-headers postgresql-dev && apk add libffi-dev
This package is open-sourced software licensed under the MIT license.