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.
- test_package/__init__.py +9 -0
- test_package/installer.py +11 -0
- unique_package_name_test_12345-0.1.0.dist-info/METADATA +36 -0
- unique_package_name_test_12345-0.1.0.dist-info/RECORD +7 -0
- unique_package_name_test_12345-0.1.0.dist-info/WHEEL +5 -0
- unique_package_name_test_12345-0.1.0.dist-info/entry_points.txt +2 -0
- unique_package_name_test_12345-0.1.0.dist-info/top_level.txt +1 -0
test_package/__init__.py
ADDED
|
@@ -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 @@
|
|
|
1
|
+
test_package
|