Metadata-Version: 2.4
Name: meos-utils
Version: 0.0.4
Summary: Common utils for meos.
Author-email: 15639936570 <lcprunstone@163.com>
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.10
Provides-Extra: dev
Requires-Dist: pre-commit>=4.2.0; extra == 'dev'
Requires-Dist: pytest>=8.4.0; extra == 'dev'
Provides-Extra: http
Requires-Dist: fastapi; extra == 'http'
Requires-Dist: orjson; extra == 'http'
Requires-Dist: pydantic; extra == 'http'
Description-Content-Type: text/markdown

# meos_utils

MeOS™相关的公共工具

## 1. cipher

针对加/解密工具进行加/解密.

## 2. http

封装了repsonse等常用组件, 便于其他项目进行复用.

## 本地发布到nexus

### 配置私服路径

```toml
[[tool.uv.index]]
name = "meos_utils"
url = "http://nexus.isiact.com/repository/pypi-siact/simple/"
publish-url = "http://nexus.isiact.com/repository/pypi-siact/"
explicit = true
```

然后命令行执行发布

```bash
uv build
uv publish --index meos_utils
```
