Metadata-Version: 2.4
Name: tb-hello-world
Version: 0.1.3
Summary: A minimal hello world Python package
Author-email: taixingbi <taixingbi@google.com>
License-Expression: MIT
License-File: LICENSE
Keywords: example,hello,world
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# tb-hello-world

A minimal hello world Python package.

## Installation

```bash
pip install tb-hello-world
```

## Usage

```python
from hello_world import hello

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

## Build status
```bash
rm -rf dist/
python -m build
twine check dist/*
```

## Publishing to PyPI
**Upload** (from the project directory with `.venv` activated):
```bash
source .venv/bin/activate
python -m twine upload dist/* --verbose
```

When prompted, use `__token__` as the username and your API token as the password.

To test first on TestPyPI:

```bash
python -m twine upload --repository testpypi dist/*
```
