An open API service indexing awesome lists of open source software.

https://github.com/eocode/first-python-package

A simple pyhton package template
https://github.com/eocode/first-python-package

pypi-package python software-engineering

Last synced: 9 months ago
JSON representation

A simple pyhton package template

Awesome Lists containing this project

README

          

# First-Python-Package
A simple pyhton package to say messages

# Goal

Create a package and publish in https://pypi.org

# Installation

`pip install say-message`

# Public repository

https://pypi.org/project/say-message

# Basic Usage

```sh
from say_message.say_message import say_message

if __name__ == "__main__":
say_message('Hi')
```

# Build the solution

```sh
python -m pip install --user --upgrade setuptools wheel
python setup.py sdist bdist_wheel
python -m pip install --user --upgrade twine
python -m twine upload dist/*
```

# Run test

```sh
python -m unittest
```