Metadata-Version: 2.1
Name: pypi-pkg-test
Version: 0.0.4
Summary: A small test about distrubution
Home-page: https://github.com/jasonqiao36/pypi-pkg-test
Author: jasonqiao36
Author-email: jasonqiao36@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# Package Test

This is a small test about distribution.

## Generate distribution archives

`python setup.py sdist bdist_wheel`

## Upload to TestPyPi

Test PyPI is a separate instance of the package index intended for testing and experimentation.

install twint: `pip install twine`

upload: `twine upload --repository-url https://test.pypi.org/legacy/ dist/*`

## Install

`pip install --index-url https://test.pypi.org/simple/ pypi_pkg_test`

## Usage

```python
from pypi_pkg_test.main import hello


print(hello())  # hello jason
```

