sw-jdi-test 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.
@@ -0,0 +1,6 @@
1
+ Metadata-Version: 2.4
2
+ Name: sw-jdi-test
3
+ Version: 0.1.0
4
+ Summary: A minimal hello world package
5
+ Requires-Python: >=3.8
6
+ Description-Content-Type: text/markdown
File without changes
@@ -0,0 +1,15 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ print("okay")
4
+
5
+ setup(
6
+ name="hello-world-package",
7
+ version="0.1.0",
8
+ description="A minimal hello world package",
9
+ packages=find_packages(),
10
+ entry_points={
11
+ "console_scripts": [
12
+ "hello-world=hello_world.main:main",
13
+ ],
14
+ },
15
+ )
File without changes
@@ -0,0 +1,5 @@
1
+ def main():
2
+ print("Hello, world!")
3
+
4
+ if __name__ == "__main__":
5
+ main()
@@ -0,0 +1,13 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "sw-jdi-test"
7
+ version = "0.1.0"
8
+ description = "A minimal hello world package"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
11
+
12
+ [project.scripts]
13
+ hello-world = "hello_world.main:main"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,6 @@
1
+ Metadata-Version: 2.4
2
+ Name: sw-jdi-test
3
+ Version: 0.1.0
4
+ Summary: A minimal hello world package
5
+ Requires-Python: >=3.8
6
+ Description-Content-Type: text/markdown
@@ -0,0 +1,10 @@
1
+ README.md
2
+ Setup.py
3
+ pyproject.toml
4
+ hello_world/__init__.py
5
+ hello_world/main.py
6
+ sw_jdi_test.egg-info/PKG-INFO
7
+ sw_jdi_test.egg-info/SOURCES.txt
8
+ sw_jdi_test.egg-info/dependency_links.txt
9
+ sw_jdi_test.egg-info/entry_points.txt
10
+ sw_jdi_test.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ hello-world = hello_world.main:main
@@ -0,0 +1 @@
1
+ hello_world