MSRCPoC 99.0.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.
- msrcpoc-99.0.0.dist-info/METADATA +12 -0
- msrcpoc-99.0.0.dist-info/RECORD +5 -0
- msrcpoc-99.0.0.dist-info/WHEEL +4 -0
- src/__init__.py +1 -0
- src/main.py +5 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.5
|
|
2
|
+
Name: MSRCPoC
|
|
3
|
+
Version: 99.0.0
|
|
4
|
+
Summary: My awesome Python package for testing
|
|
5
|
+
Author-email: Joex <testing@joex.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Requires-Python: >=3.8
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# Install
|
|
11
|
+
|
|
12
|
+
Python Package for Testing
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
src/__init__.py,sha256=sj9wIm70R-WOoeYuJaJ_kGbbvofyK2yRnv_sNflJPCQ,23
|
|
2
|
+
src/main.py,sha256=WJF8RRqGuqXx3hMCnexXrTcTxbEzGC9vpxVo3rCmzj4,150
|
|
3
|
+
msrcpoc-99.0.0.dist-info/METADATA,sha256=zCJ3NZnsUhi36GJ_Hm7SA1b5fNK1RsatxSOJ0YuKFco,251
|
|
4
|
+
msrcpoc-99.0.0.dist-info/WHEEL,sha256=zOwg4jB6zX2kU910N-cMawjivD6tO8NEWvE12je1bVk,87
|
|
5
|
+
msrcpoc-99.0.0.dist-info/RECORD,,
|
src/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .main import hello
|