helloworld2 2.0.0__tar.gz → 3.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,6 @@
1
+ include README.md
2
+ include hw2.py
3
+
4
+ exclude main.py
5
+ exclude AI-howto.txt
6
+ exclude __init__.py
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: helloworld2
3
+ Version: 3.0.0
4
+ Summary: A simple Python module that prints Hello World.
5
+ Requires-Python: >=3.8
6
+ Description-Content-Type: text/markdown
7
+ Dynamic: description
8
+ Dynamic: description-content-type
9
+ Dynamic: requires-python
10
+ Dynamic: summary
11
+
12
+ # HelloWorld2 Project
13
+
14
+ A simple Python project demonstrating a single-module distribution.
15
+
16
+ ## Structure
17
+ - `hw2.py`: A simple module providing `print_hw()`.
18
+ - `main.py`: Example entry point for local runs (not part of the distribution package).
19
+
20
+ ## How to run
21
+ ```bash
22
+ python3 main.py
23
+ ```
@@ -0,0 +1,12 @@
1
+ # HelloWorld2 Project
2
+
3
+ A simple Python project demonstrating a single-module distribution.
4
+
5
+ ## Structure
6
+ - `hw2.py`: A simple module providing `print_hw()`.
7
+ - `main.py`: Example entry point for local runs (not part of the distribution package).
8
+
9
+ ## How to run
10
+ ```bash
11
+ python3 main.py
12
+ ```
@@ -0,0 +1,23 @@
1
+ Metadata-Version: 2.4
2
+ Name: helloworld2
3
+ Version: 3.0.0
4
+ Summary: A simple Python module that prints Hello World.
5
+ Requires-Python: >=3.8
6
+ Description-Content-Type: text/markdown
7
+ Dynamic: description
8
+ Dynamic: description-content-type
9
+ Dynamic: requires-python
10
+ Dynamic: summary
11
+
12
+ # HelloWorld2 Project
13
+
14
+ A simple Python project demonstrating a single-module distribution.
15
+
16
+ ## Structure
17
+ - `hw2.py`: A simple module providing `print_hw()`.
18
+ - `main.py`: Example entry point for local runs (not part of the distribution package).
19
+
20
+ ## How to run
21
+ ```bash
22
+ python3 main.py
23
+ ```
@@ -1,7 +1,8 @@
1
+ MANIFEST.in
1
2
  README.md
3
+ hw2.py
2
4
  setup.py
3
5
  helloworld2.egg-info/PKG-INFO
4
6
  helloworld2.egg-info/SOURCES.txt
5
7
  helloworld2.egg-info/dependency_links.txt
6
- helloworld2.egg-info/requires.txt
7
8
  helloworld2.egg-info/top_level.txt
@@ -0,0 +1,9 @@
1
+ # rp
2
+ # This is a test script to check if the package is installed correctly
3
+ # rp aus dem lokallen build ordner
4
+ # from build.lib.helloworld import print_hw
5
+
6
+ def print_hw():
7
+ print("Hello World from helloworld2")
8
+
9
+
@@ -0,0 +1,14 @@
1
+ from pathlib import Path
2
+ from setuptools import setup
3
+
4
+ HERE = Path(__file__).parent
5
+
6
+ setup(
7
+ name="helloworld2",
8
+ version="3.0.0",
9
+ description="A simple Python module that prints Hello World.",
10
+ long_description=(HERE / "README.md").read_text(encoding="utf-8"),
11
+ long_description_content_type="text/markdown",
12
+ py_modules=["hw2"],
13
+ python_requires=">=3.8",
14
+ )
@@ -1,25 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: helloworld2
3
- Version: 2.0.0
4
- Summary: A simple Python project demonstrating module imports.
5
- Requires-Python: >=3.12
6
- Description-Content-Type: text/markdown
7
- Requires-Dist: wheel
8
- Dynamic: description
9
- Dynamic: description-content-type
10
- Dynamic: requires-dist
11
- Dynamic: requires-python
12
- Dynamic: summary
13
-
14
- # HelloWorld2 Project
15
-
16
- A simple Python project demonstrating module imports.
17
-
18
- ## Structure
19
- - `main.py`: The entry point of the application.
20
- - `helloworld.py`: A simple module providing a helper function.
21
-
22
- ## How to run
23
- ```bash
24
- python3 main.py
25
- ```
@@ -1,12 +0,0 @@
1
- # HelloWorld2 Project
2
-
3
- A simple Python project demonstrating module imports.
4
-
5
- ## Structure
6
- - `main.py`: The entry point of the application.
7
- - `helloworld.py`: A simple module providing a helper function.
8
-
9
- ## How to run
10
- ```bash
11
- python3 main.py
12
- ```
@@ -1,25 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: helloworld2
3
- Version: 2.0.0
4
- Summary: A simple Python project demonstrating module imports.
5
- Requires-Python: >=3.12
6
- Description-Content-Type: text/markdown
7
- Requires-Dist: wheel
8
- Dynamic: description
9
- Dynamic: description-content-type
10
- Dynamic: requires-dist
11
- Dynamic: requires-python
12
- Dynamic: summary
13
-
14
- # HelloWorld2 Project
15
-
16
- A simple Python project demonstrating module imports.
17
-
18
- ## Structure
19
- - `main.py`: The entry point of the application.
20
- - `helloworld.py`: A simple module providing a helper function.
21
-
22
- ## How to run
23
- ```bash
24
- python3 main.py
25
- ```
@@ -1 +0,0 @@
1
- wheel
@@ -1,18 +0,0 @@
1
-
2
- # python3 setup.py sdist bdist_wheel
3
-
4
- from pathlib import Path
5
- from setuptools import find_packages, setup
6
-
7
- HERE = Path(__file__).parent
8
-
9
- setup(
10
- name="helloworld2",
11
- version="2.0.0",
12
- description="A simple Python project demonstrating module imports.",
13
- long_description=(HERE / "README.md").read_text(encoding="utf-8"),
14
- long_description_content_type="text/markdown",
15
- packages=find_packages("helloworld2.py",exclude=["main.*", "tests", "tests.*", "test", "test.*"]),
16
- install_requires=['wheel'], #external packages as dependencies
17
- python_requires=">=3.12",
18
- )
File without changes