Hello World
A simple Python package that says hello to the world!
Installation
You can install the package from PyPI:
pip install hello-wordl
Usage
As a library
from hello_wordl.hello import hello
print(hello())
print(hello("Alice"))
As a command-line application
hello-wordl
hello-wordl --name Alice
Development
This package uses a src-layout as recommended by modern Python packaging guidelines.
To set up for development:
- Clone the repository
- Create a virtual environment
- Install development dependencies:
pip install -e ".[dev]"
License
This project is licensed under the MIT License - see the LICENSE file for details.