pgc-assembler 2.0.0__tar.gz → 2.0.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.
- {pgc_assembler-2.0.0/pgc_assembler.egg-info → pgc_assembler-2.0.1}/PKG-INFO +2 -1
- pgc_assembler-2.0.1/VERSION +1 -0
- pgc_assembler-2.0.1/assembler/VERSION +1 -0
- {pgc_assembler-2.0.0 → pgc_assembler-2.0.1/pgc_assembler.egg-info}/PKG-INFO +2 -1
- {pgc_assembler-2.0.0 → pgc_assembler-2.0.1}/pgc_assembler.egg-info/SOURCES.txt +1 -0
- pgc_assembler-2.0.1/pgc_assembler.egg-info/requires.txt +1 -0
- {pgc_assembler-2.0.0 → pgc_assembler-2.0.1}/pyproject.toml +5 -2
- pgc_assembler-2.0.0/VERSION +0 -1
- pgc_assembler-2.0.0/assembler/VERSION +0 -1
- {pgc_assembler-2.0.0 → pgc_assembler-2.0.1}/LICENSE +0 -0
- {pgc_assembler-2.0.0 → pgc_assembler-2.0.1}/MANIFEST.in +0 -0
- {pgc_assembler-2.0.0 → pgc_assembler-2.0.1}/NOTICE +0 -0
- {pgc_assembler-2.0.0 → pgc_assembler-2.0.1}/README.md +0 -0
- {pgc_assembler-2.0.0 → pgc_assembler-2.0.1}/_build_hook.py +0 -0
- {pgc_assembler-2.0.0 → pgc_assembler-2.0.1}/assembler/__init__.py +0 -0
- {pgc_assembler-2.0.0 → pgc_assembler-2.0.1}/assembler/cli.py +0 -0
- {pgc_assembler-2.0.0 → pgc_assembler-2.0.1}/assembler/conformance.py +0 -0
- {pgc_assembler-2.0.0 → pgc_assembler-2.0.1}/assembler/core.py +0 -0
- {pgc_assembler-2.0.0 → pgc_assembler-2.0.1}/assembler/indexes.py +0 -0
- {pgc_assembler-2.0.0 → pgc_assembler-2.0.1}/pgc_assembler.egg-info/dependency_links.txt +0 -0
- {pgc_assembler-2.0.0 → pgc_assembler-2.0.1}/pgc_assembler.egg-info/entry_points.txt +0 -0
- {pgc_assembler-2.0.0 → pgc_assembler-2.0.1}/pgc_assembler.egg-info/top_level.txt +0 -0
- {pgc_assembler-2.0.0 → pgc_assembler-2.0.1}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pgc-assembler
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.1
|
|
4
4
|
Summary: PGC snapshot assembler — composes compiled projections into a manifest-pinned executable snapshot (import package: assembler)
|
|
5
5
|
Author-email: Bhash Ganti <bachipeachy@gmail.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -20,6 +20,7 @@ Requires-Python: >=3.10
|
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
License-File: NOTICE
|
|
23
|
+
Requires-Dist: pyyaml
|
|
23
24
|
Dynamic: license-file
|
|
24
25
|
|
|
25
26
|
# snapshot_assembler
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
15
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
15
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pgc-assembler
|
|
3
|
-
Version: 2.0.
|
|
3
|
+
Version: 2.0.1
|
|
4
4
|
Summary: PGC snapshot assembler — composes compiled projections into a manifest-pinned executable snapshot (import package: assembler)
|
|
5
5
|
Author-email: Bhash Ganti <bachipeachy@gmail.com>
|
|
6
6
|
License-Expression: Apache-2.0
|
|
@@ -20,6 +20,7 @@ Requires-Python: >=3.10
|
|
|
20
20
|
Description-Content-Type: text/markdown
|
|
21
21
|
License-File: LICENSE
|
|
22
22
|
License-File: NOTICE
|
|
23
|
+
Requires-Dist: pyyaml
|
|
23
24
|
Dynamic: license-file
|
|
24
25
|
|
|
25
26
|
# snapshot_assembler
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pyyaml
|
|
@@ -5,7 +5,7 @@ backend-path = ["."]
|
|
|
5
5
|
|
|
6
6
|
[project]
|
|
7
7
|
name = "pgc-assembler"
|
|
8
|
-
version = "2.0.
|
|
8
|
+
version = "2.0.1"
|
|
9
9
|
description = "PGC snapshot assembler — composes compiled projections into a manifest-pinned executable snapshot (import package: assembler)"
|
|
10
10
|
readme = "README.md"
|
|
11
11
|
requires-python = ">=3.10"
|
|
@@ -25,7 +25,10 @@ classifiers = [
|
|
|
25
25
|
"Topic :: Software Development :: Build Tools",
|
|
26
26
|
]
|
|
27
27
|
|
|
28
|
-
|
|
28
|
+
# `_profile_declaration` parses the snapshot profile's YAML block, and it is reached from
|
|
29
|
+
# `verify_snapshot` — the `verify` subcommand and the profile check inside assembly. A standalone
|
|
30
|
+
# install without this raises ModuleNotFoundError there instead of refusing.
|
|
31
|
+
dependencies = ["pyyaml"]
|
|
29
32
|
|
|
30
33
|
[project.scripts]
|
|
31
34
|
snapshot_assembler = "assembler.cli:main"
|
pgc_assembler-2.0.0/VERSION
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
14
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
14
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|