hyojo 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.
hyojo-0.1.0/PKG-INFO ADDED
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: hyojo
3
+ Version: 0.1.0
4
+ Summary: A simple Python package
5
+ Requires-Python: >=3.8
6
+ Description-Content-Type: text/markdown
7
+
8
+ \# hyojo
9
+
10
+
11
+
12
+ A simple Python package.
13
+
14
+
15
+
hyojo-0.1.0/README.md ADDED
@@ -0,0 +1,8 @@
1
+ \# hyojo
2
+
3
+
4
+
5
+ A simple Python package.
6
+
7
+
8
+
@@ -0,0 +1 @@
1
+ from .hyojo import hello
@@ -0,0 +1,2 @@
1
+ def hello():
2
+ return "Hello from the Hyojotachi!"
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: hyojo
3
+ Version: 0.1.0
4
+ Summary: A simple Python package
5
+ Requires-Python: >=3.8
6
+ Description-Content-Type: text/markdown
7
+
8
+ \# hyojo
9
+
10
+
11
+
12
+ A simple Python package.
13
+
14
+
15
+
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ hyojo/__init__.py
4
+ hyojo/hyojo.py
5
+ hyojo.egg-info/PKG-INFO
6
+ hyojo.egg-info/SOURCES.txt
7
+ hyojo.egg-info/dependency_links.txt
8
+ hyojo.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ hyojo
@@ -0,0 +1,10 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "hyojo"
7
+ version = "0.1.0"
8
+ description = "A simple Python package"
9
+ readme = "README.md"
10
+ requires-python = ">=3.8"
hyojo-0.1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+