testmatrix-hub 0.0.1__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,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 iamqingyun
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.
@@ -0,0 +1,47 @@
1
+ Metadata-Version: 2.4
2
+ Name: testmatrix-hub
3
+ Version: 0.0.1
4
+ Summary: TestMatrix Hub - Test management and efficiency platform (PyPI placeholder)
5
+ Author-email: iamqingyun <iamhuchenyu@163.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/hu-chenyu/TestMatrix
8
+ Project-URL: Repository, https://github.com/hu-chenyu/TestMatrix
9
+ Keywords: testing,test-management,test-automation,quality,dashboard
10
+ Classifier: Development Status :: 2 - Pre-Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Topic :: Software Development :: Testing
16
+ Classifier: Topic :: Software Development :: Quality Assurance
17
+ Requires-Python: >=3.11
18
+ Description-Content-Type: text/markdown
19
+ License-File: LICENSE
20
+ Dynamic: license-file
21
+
22
+ # TestMatrix Hub
23
+
24
+ > 测试管理与效能平台 —— 用例管理、执行调度、实时日志、质量看板的一体化解决方案。
25
+
26
+ ## 当前状态
27
+
28
+ 本包为 **PyPI 占位包(v0.0.1)**,用于预留包名。正式功能将随项目里程碑逐步发布。
29
+
30
+ - 项目仓库:https://github.com/hu-chenyu/TestMatrix
31
+ - 技术栈:Python 3.11+ / Flask / MySQL / Redis / pytest
32
+ - 许可证:MIT
33
+
34
+ ## 路线图
35
+
36
+ - [ ] 核心测试用例管理 SDK
37
+ - [ ] 执行引擎与调度器
38
+ - [ ] 质量度量与报告生成
39
+ - [ ] pytest 插件集成
40
+
41
+ ## 安装
42
+
43
+ ```bash
44
+ pip install test-matrix
45
+ ```
46
+
47
+ 占位包暂无可调用功能,仅用于包名预留。
@@ -0,0 +1,26 @@
1
+ # TestMatrix Hub
2
+
3
+ > 测试管理与效能平台 —— 用例管理、执行调度、实时日志、质量看板的一体化解决方案。
4
+
5
+ ## 当前状态
6
+
7
+ 本包为 **PyPI 占位包(v0.0.1)**,用于预留包名。正式功能将随项目里程碑逐步发布。
8
+
9
+ - 项目仓库:https://github.com/hu-chenyu/TestMatrix
10
+ - 技术栈:Python 3.11+ / Flask / MySQL / Redis / pytest
11
+ - 许可证:MIT
12
+
13
+ ## 路线图
14
+
15
+ - [ ] 核心测试用例管理 SDK
16
+ - [ ] 执行引擎与调度器
17
+ - [ ] 质量度量与报告生成
18
+ - [ ] pytest 插件集成
19
+
20
+ ## 安装
21
+
22
+ ```bash
23
+ pip install test-matrix
24
+ ```
25
+
26
+ 占位包暂无可调用功能,仅用于包名预留。
@@ -0,0 +1,31 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "testmatrix-hub"
7
+ version = "0.0.1"
8
+ description = "TestMatrix Hub - Test management and efficiency platform (PyPI placeholder)"
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = "MIT"
12
+ authors = [
13
+ { name = "iamqingyun", email = "iamhuchenyu@163.com" },
14
+ ]
15
+ keywords = ["testing", "test-management", "test-automation", "quality", "dashboard"]
16
+ classifiers = [
17
+ "Development Status :: 2 - Pre-Alpha",
18
+ "Intended Audience :: Developers",
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.11",
21
+ "Programming Language :: Python :: 3.12",
22
+ "Topic :: Software Development :: Testing",
23
+ "Topic :: Software Development :: Quality Assurance",
24
+ ]
25
+
26
+ [project.urls]
27
+ Homepage = "https://github.com/hu-chenyu/TestMatrix"
28
+ Repository = "https://github.com/hu-chenyu/TestMatrix"
29
+
30
+ [tool.setuptools.packages.find]
31
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,10 @@
1
+ """TestMatrix - 测试管理与效能平台.
2
+
3
+ 本包为 PyPI 占位包(v0.0.1),用于预留包名。
4
+ 正式功能将随 TestMatrix 项目里程碑逐步发布。
5
+
6
+ 项目地址:https://github.com/hu-chenyu/TestMatrix
7
+ """
8
+
9
+ __version__ = "0.0.1"
10
+ __all__ = ["__version__"]
@@ -0,0 +1,47 @@
1
+ Metadata-Version: 2.4
2
+ Name: testmatrix-hub
3
+ Version: 0.0.1
4
+ Summary: TestMatrix Hub - Test management and efficiency platform (PyPI placeholder)
5
+ Author-email: iamqingyun <iamhuchenyu@163.com>
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/hu-chenyu/TestMatrix
8
+ Project-URL: Repository, https://github.com/hu-chenyu/TestMatrix
9
+ Keywords: testing,test-management,test-automation,quality,dashboard
10
+ Classifier: Development Status :: 2 - Pre-Alpha
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Topic :: Software Development :: Testing
16
+ Classifier: Topic :: Software Development :: Quality Assurance
17
+ Requires-Python: >=3.11
18
+ Description-Content-Type: text/markdown
19
+ License-File: LICENSE
20
+ Dynamic: license-file
21
+
22
+ # TestMatrix Hub
23
+
24
+ > 测试管理与效能平台 —— 用例管理、执行调度、实时日志、质量看板的一体化解决方案。
25
+
26
+ ## 当前状态
27
+
28
+ 本包为 **PyPI 占位包(v0.0.1)**,用于预留包名。正式功能将随项目里程碑逐步发布。
29
+
30
+ - 项目仓库:https://github.com/hu-chenyu/TestMatrix
31
+ - 技术栈:Python 3.11+ / Flask / MySQL / Redis / pytest
32
+ - 许可证:MIT
33
+
34
+ ## 路线图
35
+
36
+ - [ ] 核心测试用例管理 SDK
37
+ - [ ] 执行引擎与调度器
38
+ - [ ] 质量度量与报告生成
39
+ - [ ] pytest 插件集成
40
+
41
+ ## 安装
42
+
43
+ ```bash
44
+ pip install test-matrix
45
+ ```
46
+
47
+ 占位包暂无可调用功能,仅用于包名预留。
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/testmatrix_hub/__init__.py
5
+ src/testmatrix_hub.egg-info/PKG-INFO
6
+ src/testmatrix_hub.egg-info/SOURCES.txt
7
+ src/testmatrix_hub.egg-info/dependency_links.txt
8
+ src/testmatrix_hub.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ testmatrix_hub