Metadata-Version: 2.1
Name: novoceed-test-package
Version: 0.1.1
Summary: A sample Python package
Author: novoceed
Author-email: novoceed@gmail.com
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

# test_package

这是一个示例Python包，用于演示如何创建和发布Python包到PyPI。

## 安装
```bash
pip install test-package
```

## 使用方法
```python
from test_package import example

# 使用包中的函数
result = example.hello_world()
print(result)
```

## 开发
1. 克隆仓库
2. 安装开发依赖：`pip install -e .`

## 许可证
MIT
