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.
@@ -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__