Metadata-Version: 2.4
Name: my_pypi_test_pkg_syjiang
Version: 0.0.1
Summary: A small example package for PyPI testing
Project-URL: Homepage, https://github.com/jiangsanyin/my_pypi_test_pkg
Project-URL: Bug Tracker, https://github.com/jiangsanyin/my_pypi_test_pkg/issues
Author-email: syjiang <1327212357@qq.com>
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# My PyPI Test Package (Example)

This is a simple package created for testing the PyPI packaging and publishing process.

Remember to replace `example` in the package name and `pyproject.toml` with your unique identifier.

## Installation

Once published to TestPyPI (or PyPI):

```bash
# From TestPyPI
pip install -i https://test.pypi.org/simple/ my-pypi-test-pkg-example

# From PyPI (if you publish there)
# pip install my-pypi-test-pkg-example
```

## Usage

```python
from my_pypi_test_pkg_example import greet

print(greet("Your Name"))
``` 