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.
- toy_package_a-0.2.1/PKG-INFO +13 -0
- toy_package_a-0.2.1/README.md +2 -0
- toy_package_a-0.2.1/pyproject.toml +26 -0
- toy_package_a-0.2.1/setup.cfg +4 -0
- toy_package_a-0.2.1/toy_package_a/__init__.py +3 -0
- toy_package_a-0.2.1/toy_package_a/hello_a.py +2 -0
- toy_package_a-0.2.1/toy_package_a/tests/__init__.py +0 -0
- toy_package_a-0.2.1/toy_package_a/tests/test_hello_a.py +5 -0
- toy_package_a-0.2.1/toy_package_a.egg-info/PKG-INFO +13 -0
- toy_package_a-0.2.1/toy_package_a.egg-info/SOURCES.txt +10 -0
- toy_package_a-0.2.1/toy_package_a.egg-info/dependency_links.txt +1 -0
- toy_package_a-0.2.1/toy_package_a.egg-info/top_level.txt +1 -0
|
@@ -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,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"
|
|
File without changes
|
|
@@ -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
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
toy_package_a
|