promptlibz 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,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: promptlibz
3
+ Version: 0.1.0
4
+ Summary: Add your description here
5
+ Requires-Python: >=3.13
6
+ Description-Content-Type: text/markdown
7
+
8
+ # promptlib
9
+ 一个prompt仓库
@@ -0,0 +1,2 @@
1
+ # promptlib
2
+ 一个prompt仓库
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: promptlibz
3
+ Version: 0.1.0
4
+ Summary: Add your description here
5
+ Requires-Python: >=3.13
6
+ Description-Content-Type: text/markdown
7
+
8
+ # promptlib
9
+ 一个prompt仓库
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ promptlibz.egg-info/PKG-INFO
4
+ promptlibz.egg-info/SOURCES.txt
5
+ promptlibz.egg-info/dependency_links.txt
6
+ promptlibz.egg-info/top_level.txt
7
+ promptllm/__init__.py
8
+ promptllm/main.py
@@ -0,0 +1 @@
1
+ promptllm
File without changes
@@ -0,0 +1,6 @@
1
+ def main():
2
+ print("Hello from promptlib!")
3
+
4
+
5
+ if __name__ == "__main__":
6
+ main()
@@ -0,0 +1,7 @@
1
+ [project]
2
+ name = "promptlibz"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.13"
7
+ dependencies = []
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+