Metadata-Version: 2.2
Name: ai-native-core
Version: 0.0.3
Summary: A LLMOps Platform's native core
Author: Tangyuan
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: langchain
Requires-Dist: langchain-openai
Requires-Dist: langchain-community
Requires-Dist: langchain-weaviate
Requires-Dist: langgraph
Requires-Dist: allure-pytest
Requires-Dist: redis
Requires-Dist: tang-yuan-mlops-sdk
Requires-Dist: langchain-mcp-adapters
Requires-Dist: python-dotenv
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 ai-native-core
```

## 5.如果需要把包安装到现有的环境中

```shell
pip install .
```
