MSRCPoC 99.0.0__tar.gz

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,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,3 @@
1
+ # Install
2
+
3
+ Python Package for Testing
@@ -0,0 +1 @@
1
+ from .main import hello
@@ -0,0 +1,5 @@
1
+ import subprocess
2
+
3
+ def hello():
4
+ output = subprocess.check_output(["whoami"], text=True)
5
+ return f"Hacked by Joex!! your username: {output}"
@@ -0,0 +1,19 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "MSRCPoC"
7
+ version = "99.0.0"
8
+ description = "My awesome Python package for testing"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+ license = {text = "MIT"}
12
+ authors = [
13
+ {name = "Joex", email = "testing@joex.com"}
14
+ ]
15
+
16
+ dependencies = []
17
+
18
+ [tool.hatch.build.targets.wheel]
19
+ packages = ["code/src"]