Metadata-Version: 2.4
Name: xfit-rpa
Version: 0.0.35
Summary: A short description of your package
Project-URL: Homepage, https://github.com/yourusername/xfit-rpa
Project-URL: Bug Tracker, https://github.com/yourusername/xfit-rpa/issues
Author-email: Your Name <your.email@example.com>
License-Expression: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.6
Requires-Dist: oss2>=2.18.6
Requires-Dist: pyyaml>=6.0.1
Description-Content-Type: text/markdown

# My Package

这是一个示例 Python 包。

## 安装

```bash
pip install xfit-rpa
```

## 使用方法

```python
from xfit_rpa import example

# 使用示例
result = example.some_function()
```

## 开发

1. 克隆仓库
2. 安装开发依赖：
   ```bash
   pip install -r requirements.txt
   pip install -e .
   ```
3. 运行测试：
   ```bash
   pytest
   ```

## 构建和发布

1. 安装构建工具：
   ```bash
   pip install build twine
   ```

2. 构建分发包：
   ```bash
   python -m build
   ```

3. 发布到 PyPI：
   ```bash
   # 测试发布到 TestPyPI
   python -m twine upload --repository testpypi dist/*
   
   # 正式发布到 PyPI
   python -m twine upload dist/*
   ```

## 安装

```python
https://test.pypi.org/simple
```

## 许可证

MIT License 