mexus 0.1.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- mexus-0.1.0/CLAUDE.md +24 -0
- mexus-0.1.0/LICENSE +21 -0
- mexus-0.1.0/MANIFEST.in +9 -0
- mexus-0.1.0/PKG-INFO +15 -0
- mexus-0.1.0/README.md +1 -0
- mexus-0.1.0/mexus/__init__.py +1 -0
- mexus-0.1.0/mexus/ai_audio/__init__.py +1 -0
- mexus-0.1.0/mexus/ai_cv/__init__.py +1 -0
- mexus-0.1.0/mexus/ai_nlp/__init__.py +1 -0
- mexus-0.1.0/mexus/ai_video/__init__.py +1 -0
- mexus-0.1.0/mexus/llm/__init__.py +1 -0
- mexus-0.1.0/mexus/models/__init__.py +1 -0
- mexus-0.1.0/mexus/pipe.py +1 -0
- mexus-0.1.0/mexus/schemas/__init__.py +1 -0
- mexus-0.1.0/mexus/utils/__init__.py +5 -0
- mexus-0.1.0/mexus/utils/http_utils.py +1 -0
- mexus-0.1.0/mexus/utils/json_utils.py +1 -0
- mexus-0.1.0/mexus/utils/str_utils.py +4 -0
- mexus-0.1.0/mexus.egg-info/PKG-INFO +15 -0
- mexus-0.1.0/mexus.egg-info/SOURCES.txt +23 -0
- mexus-0.1.0/mexus.egg-info/dependency_links.txt +1 -0
- mexus-0.1.0/mexus.egg-info/top_level.txt +1 -0
- mexus-0.1.0/pyproject.toml +7 -0
- mexus-0.1.0/setup.cfg +4 -0
- mexus-0.1.0/setup.py +24 -0
mexus-0.1.0/CLAUDE.md
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# 项目名称:mexus
|
|
2
|
+
|
|
3
|
+
## 一、项目概述
|
|
4
|
+
本项目主要是python的代码底座项目,包含各种封装好的python功能和工具
|
|
5
|
+
|
|
6
|
+
## 二、技术栈与环境
|
|
7
|
+
- 语言/版本:python
|
|
8
|
+
- 运行环境: Python 3.11
|
|
9
|
+
- 包管理:uv
|
|
10
|
+
|
|
11
|
+
## 三、项目结构(关键目录)
|
|
12
|
+
- `mexus/`:工具包
|
|
13
|
+
- `examples`:演示测试
|
|
14
|
+
- `projects/`:项目
|
|
15
|
+
|
|
16
|
+
## 四、命令脚本
|
|
17
|
+
- 安装依赖:`uv add`
|
|
18
|
+
- 删除依赖:`uv remove`
|
|
19
|
+
|
|
20
|
+
## 五、沟通与输出要求
|
|
21
|
+
- 语言:中文回复(或英文,按需)
|
|
22
|
+
- 输出格式:代码块用 ```语言标记,关键变更加粗
|
|
23
|
+
- 每次修改后:简要说明变更原因、影响范围、测试建议
|
|
24
|
+
- 遇到不确定:先提问,不自行决定重要设计
|
mexus-0.1.0/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 严跃
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
mexus-0.1.0/MANIFEST.in
ADDED
mexus-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mexus
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Add your description here
|
|
5
|
+
Home-page:
|
|
6
|
+
Author: yayo
|
|
7
|
+
Author-email:
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: license-file
|
|
13
|
+
Dynamic: requires-python
|
|
14
|
+
|
|
15
|
+
mexus 代码底座
|
mexus-0.1.0/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mexus 代码底座
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# -*- coding:UTF-8 -*-
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# -*- coding:UTF-8 -*-
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# -*- coding:UTF-8 -*-
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# -*- coding:UTF-8 -*-
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# -*- coding:UTF-8 -*-
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# -*- coding:UTF-8 -*-
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# -*- coding:UTF-8 -*-
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# -*- coding:UTF-8 -*-
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# -*- coding:UTF-8 -*-
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# -*- coding:UTF-8 -*-
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# -*- coding:UTF-8 -*-
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: mexus
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Add your description here
|
|
5
|
+
Home-page:
|
|
6
|
+
Author: yayo
|
|
7
|
+
Author-email:
|
|
8
|
+
Requires-Python: >=3.11
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
License-File: LICENSE
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: license-file
|
|
13
|
+
Dynamic: requires-python
|
|
14
|
+
|
|
15
|
+
mexus 代码底座
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
CLAUDE.md
|
|
2
|
+
LICENSE
|
|
3
|
+
MANIFEST.in
|
|
4
|
+
README.md
|
|
5
|
+
pyproject.toml
|
|
6
|
+
setup.py
|
|
7
|
+
mexus/__init__.py
|
|
8
|
+
mexus/pipe.py
|
|
9
|
+
mexus.egg-info/PKG-INFO
|
|
10
|
+
mexus.egg-info/SOURCES.txt
|
|
11
|
+
mexus.egg-info/dependency_links.txt
|
|
12
|
+
mexus.egg-info/top_level.txt
|
|
13
|
+
mexus/ai_audio/__init__.py
|
|
14
|
+
mexus/ai_cv/__init__.py
|
|
15
|
+
mexus/ai_nlp/__init__.py
|
|
16
|
+
mexus/ai_video/__init__.py
|
|
17
|
+
mexus/llm/__init__.py
|
|
18
|
+
mexus/models/__init__.py
|
|
19
|
+
mexus/schemas/__init__.py
|
|
20
|
+
mexus/utils/__init__.py
|
|
21
|
+
mexus/utils/http_utils.py
|
|
22
|
+
mexus/utils/json_utils.py
|
|
23
|
+
mexus/utils/str_utils.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
mexus
|
mexus-0.1.0/setup.cfg
ADDED
mexus-0.1.0/setup.py
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
# -*- coding:UTF-8 -*-
|
|
2
|
+
|
|
3
|
+
from setuptools import setup, find_packages
|
|
4
|
+
|
|
5
|
+
setup(
|
|
6
|
+
name="mexus",
|
|
7
|
+
version="0.1.0",
|
|
8
|
+
description="Python 代码工具包",
|
|
9
|
+
author="yayo",
|
|
10
|
+
author_email="",
|
|
11
|
+
url="",
|
|
12
|
+
packages=find_packages(include=["mexus", "mexus.*"]),
|
|
13
|
+
package_data={
|
|
14
|
+
"mexus": [],
|
|
15
|
+
},
|
|
16
|
+
include_package_data=True,
|
|
17
|
+
python_requires=">=3.11",
|
|
18
|
+
install_requires=[],
|
|
19
|
+
classifiers=[
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
"Programming Language :: Python :: 3.11",
|
|
22
|
+
"Programming Language :: Python :: 3.12",
|
|
23
|
+
],
|
|
24
|
+
)
|