Metadata-Version: 2.4
Name: sptlib_python
Version: 0.1.0
Summary: Precompiled SPT Library Python bindings
Author: Baptiste Xiao
Author-email: Baptiste Xiao <your-email@example.com>
License: MIT
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: requires-python

# 预编译的SPT Library Python绑定

这是一个预编译版本的SPT库，可以直接在目标环境中安装，无需编译工具。

## 安装

```bash
pip install sptlib_python-*.whl
```

或者直接安装wheel文件：
```bash
pip install dist/sptlib_python-*.whl
```

## 使用

```python
import sptlib_python

# 创建实例
sp_trans = sptlib_python.funcSPTrans()

# 使用功能
result = sp_trans.calcFK()
```

## 验证安装

```bash
python3 -c "import sptlib_python; f = sptlib_python.funcSPTrans(); print('安装成功')"
```

## 注意事项

- 此包为特定平台预编译，仅适用于与构建环境相同的操作系统和Python版本
- 如果在不同平台上运行失败，请联系开发者重新编译适配
