Metadata-Version: 2.1
Name: example-pkg-gunhoon
Version: 0.0.0
Summary: A small example package
Home-page: https://github.com/gunhoon/packaging-tutorial
Author: Gunhoon Lee
Author-email: gunhoon@gmail.com
Project-URL: Bug Tracker, https://github.com/gunhoon/packaging-tutorial/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# Example Package

This is a simple example package.

## How to build

Make sure you have the latest versions of PyPA's `build` installed:
```bash
python3 -m pip install --upgrade build
```

Build the package by running the following command:
```bash
python3 -m build
```

This command generate two files in the `dist` directory:
```bash
example_pkg_gunhoon-0.0.1-py3-none-any.whl
example_pkg_gunhoon-0.0.1.tar.gz
```

## How to upload

Install `twine` to upload the distribution packages:
```bash
python3 -m pip install --upgrade twine
```

Run `twine` to upload all archives under `dist` directory:
```bash
python3 -m twine upload dist/*
```
