postman-bootstrap 0.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.
- postman_bootstrap-0.0.1/PKG-INFO +32 -0
- postman_bootstrap-0.0.1/README.md +15 -0
- postman_bootstrap-0.0.1/pyproject.toml +27 -0
- postman_bootstrap-0.0.1/setup.cfg +4 -0
- postman_bootstrap-0.0.1/src/postman_bootstrap.egg-info/PKG-INFO +32 -0
- postman_bootstrap-0.0.1/src/postman_bootstrap.egg-info/SOURCES.txt +7 -0
- postman_bootstrap-0.0.1/src/postman_bootstrap.egg-info/dependency_links.txt +1 -0
- postman_bootstrap-0.0.1/src/postman_bootstrap.egg-info/top_level.txt +1 -0
- postman_bootstrap-0.0.1/src/postman_bootstrap_placeholder/__init__.py +13 -0
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: postman-bootstrap
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Name reservation. The Postman validation bootstrap CLI is not published yet.
|
|
5
|
+
Author: Postman Field Engineering
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://www.postman.com
|
|
8
|
+
Keywords: postman,api-governance,regression-testing,release-gate
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Classifier: Topic :: Software Development :: Testing
|
|
15
|
+
Requires-Python: >=3.11
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# postman-bootstrap
|
|
19
|
+
|
|
20
|
+
**This is a name reservation, not a release.** Installing it gives you nothing that runs.
|
|
21
|
+
|
|
22
|
+
`postman-bootstrap` will be the CLI for the Postman validation bootstrap: it builds a
|
|
23
|
+
release gate that proves a modernized system still behaves like the one it replaced.
|
|
24
|
+
It authors an OpenAPI spec from a repository, records the pre-transform system's real
|
|
25
|
+
answers as a golden corpus, and emits a gate plus CI that a customer keeps and runs
|
|
26
|
+
without any further dependency on this package.
|
|
27
|
+
|
|
28
|
+
Until the first real release, this distribution exists only so the name is not taken by
|
|
29
|
+
somebody else. Watch this page, or ask Postman Field Engineering.
|
|
30
|
+
|
|
31
|
+
Version `0.0.1` will never do anything. The first working release will be `0.9.x` or
|
|
32
|
+
later, so nothing here can be mistaken for it by a version constraint.
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# postman-bootstrap
|
|
2
|
+
|
|
3
|
+
**This is a name reservation, not a release.** Installing it gives you nothing that runs.
|
|
4
|
+
|
|
5
|
+
`postman-bootstrap` will be the CLI for the Postman validation bootstrap: it builds a
|
|
6
|
+
release gate that proves a modernized system still behaves like the one it replaced.
|
|
7
|
+
It authors an OpenAPI spec from a repository, records the pre-transform system's real
|
|
8
|
+
answers as a golden corpus, and emits a gate plus CI that a customer keeps and runs
|
|
9
|
+
without any further dependency on this package.
|
|
10
|
+
|
|
11
|
+
Until the first real release, this distribution exists only so the name is not taken by
|
|
12
|
+
somebody else. Watch this page, or ask Postman Field Engineering.
|
|
13
|
+
|
|
14
|
+
Version `0.0.1` will never do anything. The first working release will be `0.9.x` or
|
|
15
|
+
later, so nothing here can be mistaken for it by a version constraint.
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "postman-bootstrap"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Name reservation. The Postman validation bootstrap CLI is not published yet."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
license = { text = "Apache-2.0" }
|
|
12
|
+
authors = [{ name = "Postman Field Engineering" }]
|
|
13
|
+
keywords = ["postman", "api-governance", "regression-testing", "release-gate"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"License :: OSI Approved :: Apache Software License",
|
|
18
|
+
"Programming Language :: Python :: 3.11",
|
|
19
|
+
"Programming Language :: Python :: 3.12",
|
|
20
|
+
"Topic :: Software Development :: Testing",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
[project.urls]
|
|
24
|
+
Homepage = "https://www.postman.com"
|
|
25
|
+
|
|
26
|
+
[tool.setuptools.packages.find]
|
|
27
|
+
where = ["src"]
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: postman-bootstrap
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Name reservation. The Postman validation bootstrap CLI is not published yet.
|
|
5
|
+
Author: Postman Field Engineering
|
|
6
|
+
License: Apache-2.0
|
|
7
|
+
Project-URL: Homepage, https://www.postman.com
|
|
8
|
+
Keywords: postman,api-governance,regression-testing,release-gate
|
|
9
|
+
Classifier: Development Status :: 1 - Planning
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
14
|
+
Classifier: Topic :: Software Development :: Testing
|
|
15
|
+
Requires-Python: >=3.11
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
|
|
18
|
+
# postman-bootstrap
|
|
19
|
+
|
|
20
|
+
**This is a name reservation, not a release.** Installing it gives you nothing that runs.
|
|
21
|
+
|
|
22
|
+
`postman-bootstrap` will be the CLI for the Postman validation bootstrap: it builds a
|
|
23
|
+
release gate that proves a modernized system still behaves like the one it replaced.
|
|
24
|
+
It authors an OpenAPI spec from a repository, records the pre-transform system's real
|
|
25
|
+
answers as a golden corpus, and emits a gate plus CI that a customer keeps and runs
|
|
26
|
+
without any further dependency on this package.
|
|
27
|
+
|
|
28
|
+
Until the first real release, this distribution exists only so the name is not taken by
|
|
29
|
+
somebody else. Watch this page, or ask Postman Field Engineering.
|
|
30
|
+
|
|
31
|
+
Version `0.0.1` will never do anything. The first working release will be `0.9.x` or
|
|
32
|
+
later, so nothing here can be mistaken for it by a version constraint.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
postman_bootstrap_placeholder
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"""Name reservation for the Postman validation bootstrap CLI.
|
|
2
|
+
|
|
3
|
+
Deliberately not `postman_bootstrap`: the real distribution imports as
|
|
4
|
+
`postman_bootstrap_agent`, and a placeholder that squatted the obvious import name would
|
|
5
|
+
shadow it on any machine that had both installed during the changeover.
|
|
6
|
+
"""
|
|
7
|
+
|
|
8
|
+
__version__ = "0.0.1"
|
|
9
|
+
|
|
10
|
+
RELEASED = False
|
|
11
|
+
MESSAGE = (
|
|
12
|
+
"postman-bootstrap 0.0.1 is a name reservation and does nothing. The CLI is not published yet."
|
|
13
|
+
)
|