Metadata-Version: 2.2
Name: tang-yuan-mlops-sdk
Version: 0.1.3
Summary: A MLOps SDK example with LLM & Voice modules
Author: YourTeam
Author-email: 17348241417@163.com
Classifier: Programming Language :: Python :: 3.12
Classifier: Operating System :: OS Independent
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: scipy~=1.15.2
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# 打包方式

## 1.先安装打包工具
```shell
pip install setuptools wheel twine
```

## 2.在项目根目录下执行打包
```shell
python setup.py sdist bdist_wheel
```

## 3.上传到正式Pypi源
```shell
twine upload dist/*
```

## 4.成功后即可在其他项目通过
```shell
pip install tang-yuan-mlops-sdk
```
