pypi-sample-message 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.
@@ -0,0 +1,6 @@
1
+ """Sample package that returns a fixed message."""
2
+
3
+ from .message import get_message
4
+
5
+ __all__ = ["get_message"]
6
+ __version__ = "0.1.0"
@@ -0,0 +1,11 @@
1
+ """Command-line entrypoint for the sample package."""
2
+
3
+ from .message import get_message
4
+
5
+
6
+ def main() -> None:
7
+ print(get_message())
8
+
9
+
10
+ if __name__ == "__main__":
11
+ main()
@@ -0,0 +1,8 @@
1
+ """Message helpers for the sample package."""
2
+
3
+ MESSAGE = "Hello from pypi-sample-message!"
4
+
5
+
6
+ def get_message() -> str:
7
+ """Return the sample package message."""
8
+ return MESSAGE
@@ -0,0 +1,41 @@
1
+ Metadata-Version: 2.4
2
+ Name: pypi-sample-message
3
+ Version: 0.1.0
4
+ Summary: A sample PyPI package that prints a message.
5
+ License-Expression: MIT
6
+ Keywords: sample,pypi,demo
7
+ Classifier: Development Status :: 3 - Alpha
8
+ Classifier: Intended Audience :: Developers
9
+ Classifier: Programming Language :: Python :: 3
10
+ Classifier: Programming Language :: Python :: 3 :: Only
11
+ Classifier: Operating System :: OS Independent
12
+ Requires-Python: >=3.9
13
+ Description-Content-Type: text/markdown
14
+ License-File: LICENSE
15
+ Dynamic: license-file
16
+
17
+ # pypi-sample-message
18
+
19
+ A tiny sample Python package that only prints a message.
20
+
21
+ ## Install
22
+
23
+ ```sh
24
+ python3 -m pip install pypi-sample-message
25
+ ```
26
+
27
+ ## Use
28
+
29
+ Run the console command:
30
+
31
+ ```sh
32
+ pypi-sample-message
33
+ ```
34
+
35
+ Or call it from Python:
36
+
37
+ ```python
38
+ from pypi_sample_message import get_message
39
+
40
+ print(get_message())
41
+ ```
@@ -0,0 +1,9 @@
1
+ pypi_sample_message/__init__.py,sha256=TPTNBGA6HMp881JXaPxTnv61BdvqDiBXgt2TC7kL380,134
2
+ pypi_sample_message/cli.py,sha256=g4PQwnoPG1fMbuFounBtdlaZAnWvyaVwFmkx6PLWDB4,175
3
+ pypi_sample_message/message.py,sha256=AvDinYw9gh9XQAzoRIlryIYdMw7bR-hsBEOjaZwHjYI,183
4
+ pypi_sample_message-0.1.0.dist-info/licenses/LICENSE,sha256=KF2FNe5PQ2bg-Ca3c0DhQZuFPkEaclTBvWl7lRD2ERw,1084
5
+ pypi_sample_message-0.1.0.dist-info/METADATA,sha256=iGbubvTMAwU_kbYV2ltg1ExC2R_FvTQzLUIZ1fbq15c,832
6
+ pypi_sample_message-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
7
+ pypi_sample_message-0.1.0.dist-info/entry_points.txt,sha256=vSyUcib6sa4V72jZe8Xk5vEwVnH_bJaDDWOn4bWo7Z0,69
8
+ pypi_sample_message-0.1.0.dist-info/top_level.txt,sha256=GQslr7WZ1016PjQSnvKq_-Z42DbA39JhRPju0VrD6SY,20
9
+ pypi_sample_message-0.1.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
+ pypi-sample-message = pypi_sample_message.cli:main
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Sample Package Contributors
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 @@
1
+ pypi_sample_message