unique-package-name-test-12345 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,9 @@
1
+ """
2
+ My Package - A sample package that prints on installation
3
+ """
4
+
5
+ __version__ = "0.1.0"
6
+ __author__ = "Your Name"
7
+
8
+ # This will run when the package is imported
9
+ print("Sample package installed")
@@ -0,0 +1,11 @@
1
+ """
2
+ Custom installer script that runs during package installation
3
+ """
4
+
5
+ def post_install():
6
+ """Function that runs after package installation"""
7
+ print("Sample package installed")
8
+ print("Package installation completed successfully!")
9
+
10
+ # Run immediately when this module is imported
11
+ post_install()
@@ -0,0 +1,36 @@
1
+ Metadata-Version: 2.4
2
+ Name: unique-package-name-test-12345
3
+ Version: 0.1.0
4
+ Summary: A sample package that prints message on installation
5
+ Home-page: https://github.com/yourusername/unique-package-name-test-12345
6
+ Author: XYZ
7
+ Author-email: your.email@example.com
8
+ Classifier: Development Status :: 3 - Alpha
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Operating System :: OS Independent
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.7
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.7
19
+ Description-Content-Type: text/markdown
20
+ Dynamic: author
21
+ Dynamic: author-email
22
+ Dynamic: classifier
23
+ Dynamic: description
24
+ Dynamic: description-content-type
25
+ Dynamic: home-page
26
+ Dynamic: requires-python
27
+ Dynamic: summary
28
+
29
+ # Test Package
30
+
31
+ A sample Python package that demonstrates running code during installation.
32
+
33
+ ## Installation
34
+
35
+ ```bash
36
+ pip install test-package
@@ -0,0 +1,7 @@
1
+ test_package/__init__.py,sha256=XC6ysYf0_7unjSE1UnZq14XC1HQbuEGoIurKCMWfwG8,193
2
+ test_package/installer.py,sha256=NGB6k49a1ZmHfu4-tnTMpOWbBfv0KUCJ34yKJoLMfKk,305
3
+ unique_package_name_test_12345-0.1.0.dist-info/METADATA,sha256=8rxc1-_DW3UOoFGctFRfWQHbJ7yBuv51dhlbSTIT_ho,1126
4
+ unique_package_name_test_12345-0.1.0.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
5
+ unique_package_name_test_12345-0.1.0.dist-info/entry_points.txt,sha256=t7rK82R3d39tNj7L8NemKuPdQc1P5eMU4bSGX-JqBIA,51
6
+ unique_package_name_test_12345-0.1.0.dist-info/top_level.txt,sha256=GeXTEKqyjBx-5S0TKnJMkgF1M3Cpjq6YSWM7P4c9-lg,13
7
+ unique_package_name_test_12345-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.10.2)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ my-package-cli = my_package:main
@@ -0,0 +1 @@
1
+ test_package