Metadata-Version: 2.1
Name: hello-pypi-tyronexj
Version: 0.1.2
Summary: A simple greeting package
Home-page: https://github.com/tyronexj/hello-pypi
Author: Jie Xu
Author-email: tyronexj@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown

# Hello PyPI

This is a simple package to demonstrate publishing a package to PyPI.

# Steps

- 打包代码

```bash
pip install setuptools wheel twine
python setup.py sdist bdist_wheel
```

- 上传到 PyPI

```bash
twine upload dist/*
```

# Misc
