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
- Host: GitHub
- URL: https://github.com/eocode/first-python-package
- Owner: eocode
- License: mit
- Created: 2020-09-24T18:57:22.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-09-24T20:15:08.000Z (about 5 years ago)
- Last Synced: 2025-03-17T03:04:19.469Z (9 months ago)
- Topics: pypi-package, python, software-engineering
- Language: Python
- Homepage: https://pypi.org/project/say-message/#description
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.txt
- License: LICENSE
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
```