toy-package-a 0.2.1__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,13 @@
1
+ Metadata-Version: 2.4
2
+ Name: toy_package_a
3
+ Version: 0.2.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,2 @@
1
+ # Toy Project
2
+ A monorepo with two packages for testing PyPI deployment via GitHub Actions.
@@ -0,0 +1,26 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61", "setuptools-scm>=8"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "toy_package_a"
7
+ dynamic = ["version"] # ← this enables setuptools-scm
8
+ description = "Toy Package A – simple test package"
9
+ readme = {file = "README.md", content-type = "text/markdown"}
10
+ requires-python = ">=3.8"
11
+ license = {text = "MIT"}
12
+ authors = [{name = "Sharon Chen", email = "shchen@idmod.org"}]
13
+ keywords = ["toy", "example"]
14
+
15
+ [project.urls]
16
+ Repository = "https://github.com/your-username/toy-project"
17
+
18
+ [tool.setuptools.packages.find]
19
+ where = ["."]
20
+ include = ["toy_package_a*"]
21
+
22
+ [tool.setuptools_scm]
23
+ root = ".." # keep if your monorepo needs it
24
+ version_scheme = "no-guess-dev" # ← change to this (or "guess-next-dev")
25
+ local_scheme = "no-local-version" # ← change to this (critical for PyPI/TestPyPI uploads)
26
+ fallback_version = "0.0.0.dev0"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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.2.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,10 @@
1
+ README.md
2
+ pyproject.toml
3
+ toy_package_a/__init__.py
4
+ toy_package_a/hello_a.py
5
+ toy_package_a.egg-info/PKG-INFO
6
+ toy_package_a.egg-info/SOURCES.txt
7
+ toy_package_a.egg-info/dependency_links.txt
8
+ toy_package_a.egg-info/top_level.txt
9
+ toy_package_a/tests/__init__.py
10
+ toy_package_a/tests/test_hello_a.py
@@ -0,0 +1 @@
1
+ toy_package_a