helloworld2 2.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-2.0.0/PKG-INFO +25 -0
- helloworld2-2.0.0/README.md +12 -0
- helloworld2-2.0.0/helloworld2.egg-info/PKG-INFO +25 -0
- helloworld2-2.0.0/helloworld2.egg-info/SOURCES.txt +7 -0
- helloworld2-2.0.0/helloworld2.egg-info/dependency_links.txt +1 -0
- helloworld2-2.0.0/helloworld2.egg-info/requires.txt +1 -0
- helloworld2-2.0.0/helloworld2.egg-info/top_level.txt +1 -0
- helloworld2-2.0.0/setup.cfg +4 -0
- helloworld2-2.0.0/setup.py +18 -0
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
```
|
|
@@ -0,0 +1,12 @@
|
|
|
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
|
+
```
|
|
@@ -0,0 +1,25 @@
|
|
|
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
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
wheel
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,18 @@
|
|
|
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
|
+
)
|