wisruntime 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.
- wisruntime-0.1.0/MANIFEST.in +19 -0
- wisruntime-0.1.0/PKG-INFO +816 -0
- wisruntime-0.1.0/README.md +787 -0
- wisruntime-0.1.0/pyproject.toml +47 -0
- wisruntime-0.1.0/setup.cfg +4 -0
- wisruntime-0.1.0/wisruntime/__init__.py +91 -0
- wisruntime-0.1.0/wisruntime/config.py +119 -0
- wisruntime-0.1.0/wisruntime/exceptions.py +56 -0
- wisruntime-0.1.0/wisruntime/model.py +326 -0
- wisruntime-0.1.0/wisruntime/server/__init__.py +0 -0
- wisruntime-0.1.0/wisruntime/server/dify_handler.py +416 -0
- wisruntime-0.1.0/wisruntime/server/invoker.py +161 -0
- wisruntime-0.1.0/wisruntime/server/protocol.py +104 -0
- wisruntime-0.1.0/wisruntime/server/server.py +152 -0
- wisruntime-0.1.0/wisruntime.egg-info/PKG-INFO +816 -0
- wisruntime-0.1.0/wisruntime.egg-info/SOURCES.txt +17 -0
- wisruntime-0.1.0/wisruntime.egg-info/dependency_links.txt +1 -0
- wisruntime-0.1.0/wisruntime.egg-info/requires.txt +10 -0
- wisruntime-0.1.0/wisruntime.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# wisruntime — 构建清单
|
|
2
|
+
# 控制 source distribution (sdist) 中包含/排除的文件。
|
|
3
|
+
|
|
4
|
+
# 只包含核心文件
|
|
5
|
+
include README.md
|
|
6
|
+
include pyproject.toml
|
|
7
|
+
|
|
8
|
+
# 递归排除不需要打包的目录
|
|
9
|
+
prune .claude
|
|
10
|
+
prune notebooks
|
|
11
|
+
prune openspec
|
|
12
|
+
prune tests
|
|
13
|
+
prune event
|
|
14
|
+
|
|
15
|
+
# 排除隐藏文件和目录
|
|
16
|
+
exclude .env .gitignore .DS_Store
|
|
17
|
+
global-exclude .DS_Store
|
|
18
|
+
global-exclude *.pyc
|
|
19
|
+
global-exclude __pycache__
|