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.
- msrcpoc-99.0.0/PKG-INFO +12 -0
- msrcpoc-99.0.0/README.md +3 -0
- msrcpoc-99.0.0/code/src/__init__.py +1 -0
- msrcpoc-99.0.0/code/src/main.py +5 -0
- msrcpoc-99.0.0/pyproject.toml +19 -0
msrcpoc-99.0.0/PKG-INFO
ADDED
|
@@ -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
|
msrcpoc-99.0.0/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .main import hello
|
|
@@ -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"]
|