gui-framework-template 1.0.0__py3-none-any.whl

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,64 @@
1
+ Metadata-Version: 2.4
2
+ Name: gui-framework-template
3
+ Version: 1.0.0
4
+ Summary: 生产级PyQt5桌面应用项目模板生成器
5
+ Home-page: https://github.com/yourusername/gui-framework-template
6
+ Author: Your Name
7
+ Author-email: your.email@example.com
8
+ Project-URL: Bug Reports, https://github.com/yourusername/gui-framework-template/issues
9
+ Project-URL: Source, https://github.com/yourusername/gui-framework-template
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Intended Audience :: Developers
12
+ Classifier: Topic :: Software Development :: Code Generators
13
+ Classifier: License :: OSI Approved :: MIT License
14
+ Classifier: Programming Language :: Python :: 3.8
15
+ Classifier: Programming Language :: Python :: 3.9
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Requires-Python: >=3.8
19
+ Description-Content-Type: text/markdown
20
+ Requires-Dist: click>=8.0.0
21
+ Requires-Dist: PyYAML>=6.0
22
+ Dynamic: author
23
+ Dynamic: author-email
24
+ Dynamic: classifier
25
+ Dynamic: description
26
+ Dynamic: description-content-type
27
+ Dynamic: home-page
28
+ Dynamic: project-url
29
+ Dynamic: requires-dist
30
+ Dynamic: requires-python
31
+ Dynamic: summary
32
+
33
+ ## 项目名称
34
+ > 请介绍一下你的项目吧
35
+
36
+
37
+
38
+ ## 运行条件
39
+ > 列出运行该项目所必须的条件和相关依赖
40
+ * 条件一
41
+ * 条件二
42
+ * 条件三
43
+
44
+
45
+
46
+ ## 运行说明
47
+ > 说明如何运行和使用你的项目,建议给出具体的步骤说明
48
+ * 操作一
49
+ * 操作二
50
+ * 操作三
51
+
52
+
53
+
54
+ ## 测试说明
55
+ > 如果有测试相关内容需要说明,请填写在这里
56
+
57
+
58
+
59
+ ## 技术架构
60
+ > 使用的技术框架或系统架构图等相关说明,请填写在这里
61
+
62
+
63
+ ## 协作者
64
+ > 高效的协作会激发无尽的创造力,将他们的名字记录在这里吧
@@ -0,0 +1,6 @@
1
+ template/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ gui_framework_template-1.0.0.dist-info/METADATA,sha256=w4U_9WszDyqOAtDYRR9OVXeNd0N2-vUJd-81IM78ccs,1792
3
+ gui_framework_template-1.0.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
4
+ gui_framework_template-1.0.0.dist-info/entry_points.txt,sha256=-GumdW02UaeHa1VPdkoJ_K44vE3-W5AuFjOn-4LfCdc,61
5
+ gui_framework_template-1.0.0.dist-info/top_level.txt,sha256=kNacePue-ULIzgoNiKdFVXKtoGBEvBUWRzRyZk3dATs,9
6
+ gui_framework_template-1.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (82.0.1)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ gui-init = gui_framework_template.cli:main
@@ -0,0 +1 @@
1
+ template
template/__init__.py ADDED
File without changes