python-sth 0.1.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.
python_sth/__init__.py ADDED
@@ -0,0 +1,9 @@
1
+ """Public API for python_sth."""
2
+
3
+
4
+ def print_sth() -> None:
5
+ """Print the library's greeting."""
6
+ print("我是STH")
7
+
8
+
9
+ __all__ = ["print_sth"]
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.5
2
+ Name: python-sth
3
+ Version: 0.1.0
4
+ Summary: A small Python library that prints 我是STH.
5
+ Requires-Python: >=3.9
6
+ Description-Content-Type: text/markdown
7
+
8
+ # python-sth
9
+
10
+ 一个使用 `uv` 管理、使用 `hatchling` 构建的 Python 公共库。
11
+
12
+ ## 使用
13
+
14
+ ```python
15
+ from python_sth import print_sth
16
+
17
+ print_sth()
18
+ ```
19
+
20
+ 输出:
21
+
22
+ ```text
23
+ 我是STH
24
+ ```
25
+
26
+ ## 本地构建
27
+
28
+ ```bash
29
+ uv build
30
+ ```
@@ -0,0 +1,4 @@
1
+ python_sth/__init__.py,sha256=SUIt5i0Mp8ZsbXwOEIIcigjd3hMJfCKM_YtZfsnQfME,149
2
+ python_sth-0.1.0.dist-info/METADATA,sha256=B_u2RXO0rDVKEC_XcPdSZKvonzMCgThq9GF9tXc1zRc,408
3
+ python_sth-0.1.0.dist-info/WHEEL,sha256=zOwg4jB6zX2kU910N-cMawjivD6tO8NEWvE12je1bVk,87
4
+ python_sth-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.32.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any