Metadata-Version: 2.4
Name: example-package-demo
Version: 0.1.0
Summary: 一个简单的 Python 包示例，用于演示如何发布到 PyPI
Project-URL: Homepage, https://github.com/example/example-package
Project-URL: Repository, https://github.com/example/example-package
Project-URL: Issues, https://github.com/example/example-package/issues
Author-email: Example Author <example@example.com>
License: MIT
License-File: LICENSE
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
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.9
Description-Content-Type: text/markdown

# Example Package

一个简单的 Python 包示例，用于演示如何发布到 PyPI。

## 安装

```bash
pip install example-package-demo
```

## 使用方法

```python
from example_package import hello, add

# 使用 hello 函数
print(hello("World"))
# 输出: Hello, World!

# 使用 add 函数
result = add(1, 2)
print(result)
# 输出: 3
```

## 运行示例

```bash
python -m example_package.main
```

## 运行测试

```bash
pytest tests/
```

## 许可证

MIT License
