toy-package-a 0.1.1__py3-none-any.whl

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,3 @@
1
+ from .hello_a import hello_a # noqa: F401
2
+
3
+ __version__: str = "0.0.0"
@@ -0,0 +1,2 @@
1
+ def hello_a():
2
+ return "Hello from Toy Package A!"
File without changes
@@ -0,0 +1,5 @@
1
+ from toy_package_a import hello_a
2
+
3
+
4
+ def test_hello_a():
5
+ assert hello_a() == "Hello from Toy Package A!"
@@ -0,0 +1,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: toy_package_a
3
+ Version: 0.1.1
4
+ Summary: Toy Package A – simple test package
5
+ Author-email: Sharon Chen <shchen@idmod.org>
6
+ License: MIT
7
+ Project-URL: Repository, https://github.com/your-username/toy-project
8
+ Keywords: toy,example
9
+ Requires-Python: >=3.8
10
+ Description-Content-Type: text/markdown
11
+
12
+ # Toy Project
13
+ A monorepo with two packages for testing PyPI deployment via GitHub Actions.
@@ -0,0 +1,8 @@
1
+ toy_package_a/__init__.py,sha256=2sCKyKlqfhYC45bdSPH_nL7_-BCucLe9uUelvNXFeE4,71
2
+ toy_package_a/hello_a.py,sha256=B-MaKIDpufN_AOf5EpE806C_GoLAArstHlENsLJlAIk,54
3
+ toy_package_a/tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
+ toy_package_a/tests/test_hello_a.py,sha256=OJdhB1sdOFOWgZnxBQkFpH53-Ba2YujHdsJYKnHZdIY,108
5
+ toy_package_a-0.1.1.dist-info/METADATA,sha256=tvo11QNt6dgsVs22LccLu-kNlZylnAGwpJ1I13Q-kGA,409
6
+ toy_package_a-0.1.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
7
+ toy_package_a-0.1.1.dist-info/top_level.txt,sha256=6-kzK6iqRN6XXEW6kSlbelL-hhk7Bov5Efm56XlRcsE,14
8
+ toy_package_a-0.1.1.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.10.2)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ toy_package_a