Metadata-Version: 2.4
Name: hello-world-pkg-utsav-cloudscaile
Version: 0.1.0
Summary: A tiny example package that says hello.
Author-email: Utsav Sheth <utsav.sheth@cloudscaile.com>
License: MIT
Project-URL: Homepage, https://github.com/utsav-cloudscaile/hello-world-pkg
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# hello-world-pkg

A tiny example Python package, built for learning how to publish to PyPI.

## Installation

```bash
pip install hello-world-pkg-utsav-cloudscaile
```

## Usage

As a library:

```python
from hello_world_pkg import hello

print(hello())          # Hello, World!
print(hello("Alice"))   # Hello, Alice!
```

As a command-line tool (after install):

```bash
hello-world-pkg-utsav-cloudscaile
```

## License

MIT
