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.
- helloworld2-3.0.0/MANIFEST.in +6 -0
- helloworld2-3.0.0/PKG-INFO +23 -0
- helloworld2-3.0.0/README.md +12 -0
- helloworld2-3.0.0/helloworld2.egg-info/PKG-INFO +23 -0
- {helloworld2-2.0.0 → helloworld2-3.0.0}/helloworld2.egg-info/SOURCES.txt +2 -1
- helloworld2-3.0.0/helloworld2.egg-info/top_level.txt +1 -0
- helloworld2-3.0.0/hw2.py +9 -0
- helloworld2-3.0.0/setup.py +14 -0
- helloworld2-2.0.0/PKG-INFO +0 -25
- helloworld2-2.0.0/README.md +0 -12
- helloworld2-2.0.0/helloworld2.egg-info/PKG-INFO +0 -25
- helloworld2-2.0.0/helloworld2.egg-info/requires.txt +0 -1
- helloworld2-2.0.0/helloworld2.egg-info/top_level.txt +0 -1
- helloworld2-2.0.0/setup.py +0 -18
- {helloworld2-2.0.0 → helloworld2-3.0.0}/helloworld2.egg-info/dependency_links.txt +0 -0
- {helloworld2-2.0.0 → helloworld2-3.0.0}/setup.cfg +0 -0
|
@@ -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
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
hw2
|
helloworld2-3.0.0/hw2.py
ADDED
|
@@ -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
|
+
)
|
helloworld2-2.0.0/PKG-INFO
DELETED
|
@@ -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
|
-
```
|
helloworld2-2.0.0/README.md
DELETED
|
@@ -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 +0,0 @@
|
|
|
1
|
-
|
helloworld2-2.0.0/setup.py
DELETED
|
@@ -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
|
|
File without changes
|