hello-world-hareesh 0.1.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.
- hello_world_hareesh-0.1.0/PKG-INFO +16 -0
- hello_world_hareesh-0.1.0/README.md +3 -0
- hello_world_hareesh-0.1.0/pyproject.toml +18 -0
- hello_world_hareesh-0.1.0/src/hello_world/__init__.py +0 -0
- hello_world_hareesh-0.1.0/src/hello_world/main.py +7 -0
- hello_world_hareesh-0.1.0/src/hello_world/printHelloWorld.py +2 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: hello-world-hareesh
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary:
|
|
5
|
+
Author: hareeshmuddala
|
|
6
|
+
Author-email: hareeshmuddala000@gmail.com
|
|
7
|
+
Requires-Python: >=3.12
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
10
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Hello World Hareesh
|
|
15
|
+
|
|
16
|
+
A simple Python package that prints Hello World.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "hello-world-hareesh"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = ""
|
|
5
|
+
authors = [
|
|
6
|
+
{name = "hareeshmuddala",email = "hareeshmuddala000@gmail.com"}
|
|
7
|
+
]
|
|
8
|
+
readme = "README.md"
|
|
9
|
+
requires-python = ">=3.12"
|
|
10
|
+
dependencies = [
|
|
11
|
+
]
|
|
12
|
+
|
|
13
|
+
[tool.poetry]
|
|
14
|
+
packages = [{include = "hello_world", from = "src"}]
|
|
15
|
+
|
|
16
|
+
[build-system]
|
|
17
|
+
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
18
|
+
build-backend = "poetry.core.masonry.api"
|
|
File without changes
|