├── .gitignore ├── LICENSE ├── README.md ├── pep-0376-installation-db.rst ├── pep-0425-compatibility-tags.rst ├── pep-0426-core-metadata.rst ├── pep-0427-wheel-format.rst ├── pep-0440-versioning.rst ├── pep-0458-1.png ├── pep-0458-2.png ├── pep-0458-3.png ├── pep-0458-4.png ├── pep-0458-repository ├── client │ ├── example_client.py │ ├── metadata │ │ ├── current │ │ │ ├── metadata.staged │ │ │ │ ├── root.json │ │ │ │ ├── snapshot.json │ │ │ │ ├── targets.json │ │ │ │ └── targets │ │ │ │ │ ├── pypi-signed.json │ │ │ │ │ └── pypi-signed │ │ │ │ │ ├── 0.json │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ ├── 6.json │ │ │ │ │ ├── 7.json │ │ │ │ │ ├── 8.json │ │ │ │ │ ├── 9.json │ │ │ │ │ ├── a.json │ │ │ │ │ ├── b.json │ │ │ │ │ ├── c.json │ │ │ │ │ ├── d.json │ │ │ │ │ ├── e.json │ │ │ │ │ └── f.json │ │ │ ├── root.json │ │ │ ├── snapshot.json │ │ │ ├── targets.json │ │ │ ├── targets │ │ │ │ ├── pypi-signed.json │ │ │ │ └── pypi-signed │ │ │ │ │ ├── 0.json │ │ │ │ │ ├── 1.json │ │ │ │ │ ├── 2.json │ │ │ │ │ ├── 3.json │ │ │ │ │ ├── 4.json │ │ │ │ │ ├── 5.json │ │ │ │ │ ├── 6.json │ │ │ │ │ ├── 7.json │ │ │ │ │ ├── 8.json │ │ │ │ │ ├── 9.json │ │ │ │ │ ├── a.json │ │ │ │ │ ├── b.json │ │ │ │ │ ├── c.json │ │ │ │ │ ├── d.json │ │ │ │ │ ├── e.json │ │ │ │ │ └── f.json │ │ │ └── timestamp.json │ │ └── previous │ │ │ ├── metadata.staged │ │ │ ├── root.json │ │ │ ├── snapshot.json │ │ │ ├── targets.json │ │ │ └── targets │ │ │ │ ├── pypi-signed.json │ │ │ │ └── pypi-signed │ │ │ │ ├── 0.json │ │ │ │ ├── 1.json │ │ │ │ ├── 2.json │ │ │ │ ├── 3.json │ │ │ │ ├── 4.json │ │ │ │ ├── 5.json │ │ │ │ ├── 6.json │ │ │ │ ├── 7.json │ │ │ │ ├── 8.json │ │ │ │ ├── 9.json │ │ │ │ ├── a.json │ │ │ │ ├── b.json │ │ │ │ ├── c.json │ │ │ │ ├── d.json │ │ │ │ ├── e.json │ │ │ │ └── f.json │ │ │ ├── root.json │ │ │ ├── snapshot.json │ │ │ ├── targets.json │ │ │ ├── targets │ │ │ ├── pypi-signed.json │ │ │ └── pypi-signed │ │ │ │ ├── 0.json │ │ │ │ ├── 1.json │ │ │ │ ├── 2.json │ │ │ │ ├── 3.json │ │ │ │ ├── 4.json │ │ │ │ ├── 5.json │ │ │ │ ├── 6.json │ │ │ │ ├── 7.json │ │ │ │ ├── 8.json │ │ │ │ ├── 9.json │ │ │ │ ├── a.json │ │ │ │ ├── b.json │ │ │ │ ├── c.json │ │ │ │ ├── d.json │ │ │ │ ├── e.json │ │ │ │ └── f.json │ │ │ └── timestamp.json │ └── targets │ │ └── packages │ │ └── warehouse │ │ └── warehouse-14.2.1.tar.gz ├── create_keys.py ├── create_repository.py ├── keystore │ ├── donald_root │ ├── donald_root.pub │ ├── nick_root │ ├── nick_root.pub │ ├── noah_root │ ├── noah_root.pub │ ├── pypi-signed │ ├── pypi-signed.pub │ ├── richard_root │ ├── richard_root.pub │ ├── snapshot │ ├── snapshot.pub │ ├── targets │ ├── targets.pub │ ├── timestamp │ └── timestamp.pub └── repository │ ├── metadata.staged │ ├── metadata.staged │ │ ├── root.json │ │ ├── snapshot.json │ │ ├── targets.json │ │ └── targets │ │ │ ├── pypi-signed.json │ │ │ └── pypi-signed │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ ├── 9.json │ │ │ ├── a.json │ │ │ ├── b.json │ │ │ ├── c.json │ │ │ ├── d.json │ │ │ ├── e.json │ │ │ └── f.json │ ├── root.json │ ├── snapshot.json │ ├── targets.json │ ├── targets │ │ ├── pypi-signed.json │ │ └── pypi-signed │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ ├── 9.json │ │ │ ├── a.json │ │ │ ├── b.json │ │ │ ├── c.json │ │ │ ├── d.json │ │ │ ├── e.json │ │ │ └── f.json │ └── timestamp.json │ ├── metadata │ ├── metadata.staged │ │ ├── root.json │ │ ├── snapshot.json │ │ ├── targets.json │ │ └── targets │ │ │ ├── pypi-signed.json │ │ │ └── pypi-signed │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ ├── 9.json │ │ │ ├── a.json │ │ │ ├── b.json │ │ │ ├── c.json │ │ │ ├── d.json │ │ │ ├── e.json │ │ │ └── f.json │ ├── root.json │ ├── snapshot.json │ ├── targets.json │ ├── targets │ │ ├── pypi-signed.json │ │ └── pypi-signed │ │ │ ├── 0.json │ │ │ ├── 1.json │ │ │ ├── 2.json │ │ │ ├── 3.json │ │ │ ├── 4.json │ │ │ ├── 5.json │ │ │ ├── 6.json │ │ │ ├── 7.json │ │ │ ├── 8.json │ │ │ ├── 9.json │ │ │ ├── a.json │ │ │ ├── b.json │ │ │ ├── c.json │ │ │ ├── d.json │ │ │ ├── e.json │ │ │ └── f.json │ └── timestamp.json │ └── targets │ └── packages │ ├── django │ ├── Django-1.7.2-py2.py3-none-any.whl │ └── Django-1.7.2.tar.gz │ ├── numpy │ ├── numpy-1.9.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl │ └── numpy-1.9.1.tar.gz │ ├── requests │ ├── requests-2.5.1-py2.py3-none-any.whl │ └── requests-2.5.1.tar.gz │ └── warehouse │ ├── warehouse-14.2.1-py2.py3-none-any.whl │ └── warehouse-14.2.1.tar.gz ├── pep-0458-tuf-online-keys.rst ├── pep-0459-standard-metadata-extensions.rst ├── pep-0470-removal-of-external-hosting.rst ├── pep-0496-environment-markers.rst ├── pep-0503-simple-repository-protocol.rst ├── pep-0508-dependency-specifiers.rst ├── pep-0516-build-system-abstraction.rst ├── pep-0517-build-system-abstraction.rst ├── schemas └── pydist-schema.json └── unpublished └── metadata-hooks.rst /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/README.md -------------------------------------------------------------------------------- /pep-0376-installation-db.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0376-installation-db.rst -------------------------------------------------------------------------------- /pep-0425-compatibility-tags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0425-compatibility-tags.rst -------------------------------------------------------------------------------- /pep-0426-core-metadata.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0426-core-metadata.rst -------------------------------------------------------------------------------- /pep-0427-wheel-format.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0427-wheel-format.rst -------------------------------------------------------------------------------- /pep-0440-versioning.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0440-versioning.rst -------------------------------------------------------------------------------- /pep-0458-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-1.png -------------------------------------------------------------------------------- /pep-0458-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-2.png -------------------------------------------------------------------------------- /pep-0458-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-3.png -------------------------------------------------------------------------------- /pep-0458-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-4.png -------------------------------------------------------------------------------- /pep-0458-repository/client/example_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/example_client.py -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/root.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/snapshot.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/targets.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/0.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/1.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/2.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/3.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/4.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/5.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/6.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/7.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/8.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/9.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/a.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/b.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/c.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/d.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/e.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/metadata.staged/targets/pypi-signed/f.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/root.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/snapshot.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/targets.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/targets/pypi-signed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/targets/pypi-signed.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/targets/pypi-signed/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/targets/pypi-signed/0.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/targets/pypi-signed/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/targets/pypi-signed/1.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/targets/pypi-signed/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/targets/pypi-signed/2.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/targets/pypi-signed/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/targets/pypi-signed/3.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/targets/pypi-signed/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/targets/pypi-signed/4.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/targets/pypi-signed/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/targets/pypi-signed/5.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/targets/pypi-signed/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/targets/pypi-signed/6.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/targets/pypi-signed/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/targets/pypi-signed/7.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/targets/pypi-signed/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/targets/pypi-signed/8.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/targets/pypi-signed/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/targets/pypi-signed/9.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/targets/pypi-signed/a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/targets/pypi-signed/a.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/targets/pypi-signed/b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/targets/pypi-signed/b.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/targets/pypi-signed/c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/targets/pypi-signed/c.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/targets/pypi-signed/d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/targets/pypi-signed/d.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/targets/pypi-signed/e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/targets/pypi-signed/e.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/targets/pypi-signed/f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/targets/pypi-signed/f.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/current/timestamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/current/timestamp.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/root.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/snapshot.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/targets.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/0.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/1.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/2.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/3.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/4.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/5.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/6.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/7.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/8.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/9.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/a.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/b.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/c.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/d.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/e.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/metadata.staged/targets/pypi-signed/f.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/root.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/snapshot.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/targets.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/targets/pypi-signed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/targets/pypi-signed.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/targets/pypi-signed/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/targets/pypi-signed/0.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/targets/pypi-signed/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/targets/pypi-signed/1.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/targets/pypi-signed/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/targets/pypi-signed/2.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/targets/pypi-signed/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/targets/pypi-signed/3.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/targets/pypi-signed/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/targets/pypi-signed/4.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/targets/pypi-signed/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/targets/pypi-signed/5.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/targets/pypi-signed/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/targets/pypi-signed/6.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/targets/pypi-signed/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/targets/pypi-signed/7.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/targets/pypi-signed/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/targets/pypi-signed/8.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/targets/pypi-signed/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/targets/pypi-signed/9.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/targets/pypi-signed/a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/targets/pypi-signed/a.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/targets/pypi-signed/b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/targets/pypi-signed/b.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/targets/pypi-signed/c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/targets/pypi-signed/c.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/targets/pypi-signed/d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/targets/pypi-signed/d.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/targets/pypi-signed/e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/targets/pypi-signed/e.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/targets/pypi-signed/f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/targets/pypi-signed/f.json -------------------------------------------------------------------------------- /pep-0458-repository/client/metadata/previous/timestamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/metadata/previous/timestamp.json -------------------------------------------------------------------------------- /pep-0458-repository/client/targets/packages/warehouse/warehouse-14.2.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/client/targets/packages/warehouse/warehouse-14.2.1.tar.gz -------------------------------------------------------------------------------- /pep-0458-repository/create_keys.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/create_keys.py -------------------------------------------------------------------------------- /pep-0458-repository/create_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/create_repository.py -------------------------------------------------------------------------------- /pep-0458-repository/keystore/donald_root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/keystore/donald_root -------------------------------------------------------------------------------- /pep-0458-repository/keystore/donald_root.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/keystore/donald_root.pub -------------------------------------------------------------------------------- /pep-0458-repository/keystore/nick_root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/keystore/nick_root -------------------------------------------------------------------------------- /pep-0458-repository/keystore/nick_root.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/keystore/nick_root.pub -------------------------------------------------------------------------------- /pep-0458-repository/keystore/noah_root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/keystore/noah_root -------------------------------------------------------------------------------- /pep-0458-repository/keystore/noah_root.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/keystore/noah_root.pub -------------------------------------------------------------------------------- /pep-0458-repository/keystore/pypi-signed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/keystore/pypi-signed -------------------------------------------------------------------------------- /pep-0458-repository/keystore/pypi-signed.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/keystore/pypi-signed.pub -------------------------------------------------------------------------------- /pep-0458-repository/keystore/richard_root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/keystore/richard_root -------------------------------------------------------------------------------- /pep-0458-repository/keystore/richard_root.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/keystore/richard_root.pub -------------------------------------------------------------------------------- /pep-0458-repository/keystore/snapshot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/keystore/snapshot -------------------------------------------------------------------------------- /pep-0458-repository/keystore/snapshot.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/keystore/snapshot.pub -------------------------------------------------------------------------------- /pep-0458-repository/keystore/targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/keystore/targets -------------------------------------------------------------------------------- /pep-0458-repository/keystore/targets.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/keystore/targets.pub -------------------------------------------------------------------------------- /pep-0458-repository/keystore/timestamp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/keystore/timestamp -------------------------------------------------------------------------------- /pep-0458-repository/keystore/timestamp.pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/keystore/timestamp.pub -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/root.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/snapshot.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/targets.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/0.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/1.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/2.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/3.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/4.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/5.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/6.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/7.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/8.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/9.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/a.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/b.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/c.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/d.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/e.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/metadata.staged/targets/pypi-signed/f.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/root.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/snapshot.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/targets.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/targets/pypi-signed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/targets/pypi-signed.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/targets/pypi-signed/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/targets/pypi-signed/0.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/targets/pypi-signed/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/targets/pypi-signed/1.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/targets/pypi-signed/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/targets/pypi-signed/2.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/targets/pypi-signed/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/targets/pypi-signed/3.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/targets/pypi-signed/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/targets/pypi-signed/4.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/targets/pypi-signed/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/targets/pypi-signed/5.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/targets/pypi-signed/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/targets/pypi-signed/6.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/targets/pypi-signed/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/targets/pypi-signed/7.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/targets/pypi-signed/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/targets/pypi-signed/8.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/targets/pypi-signed/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/targets/pypi-signed/9.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/targets/pypi-signed/a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/targets/pypi-signed/a.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/targets/pypi-signed/b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/targets/pypi-signed/b.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/targets/pypi-signed/c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/targets/pypi-signed/c.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/targets/pypi-signed/d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/targets/pypi-signed/d.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/targets/pypi-signed/e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/targets/pypi-signed/e.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/targets/pypi-signed/f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/targets/pypi-signed/f.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata.staged/timestamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata.staged/timestamp.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/root.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/snapshot.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/targets.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/0.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/1.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/2.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/3.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/4.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/5.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/6.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/7.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/8.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/9.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/a.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/b.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/c.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/d.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/e.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/metadata.staged/targets/pypi-signed/f.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/root.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/root.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/snapshot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/snapshot.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/targets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/targets.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/targets/pypi-signed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/targets/pypi-signed.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/targets/pypi-signed/0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/targets/pypi-signed/0.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/targets/pypi-signed/1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/targets/pypi-signed/1.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/targets/pypi-signed/2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/targets/pypi-signed/2.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/targets/pypi-signed/3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/targets/pypi-signed/3.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/targets/pypi-signed/4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/targets/pypi-signed/4.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/targets/pypi-signed/5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/targets/pypi-signed/5.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/targets/pypi-signed/6.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/targets/pypi-signed/6.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/targets/pypi-signed/7.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/targets/pypi-signed/7.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/targets/pypi-signed/8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/targets/pypi-signed/8.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/targets/pypi-signed/9.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/targets/pypi-signed/9.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/targets/pypi-signed/a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/targets/pypi-signed/a.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/targets/pypi-signed/b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/targets/pypi-signed/b.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/targets/pypi-signed/c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/targets/pypi-signed/c.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/targets/pypi-signed/d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/targets/pypi-signed/d.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/targets/pypi-signed/e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/targets/pypi-signed/e.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/targets/pypi-signed/f.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/targets/pypi-signed/f.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/metadata/timestamp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/metadata/timestamp.json -------------------------------------------------------------------------------- /pep-0458-repository/repository/targets/packages/django/Django-1.7.2-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/targets/packages/django/Django-1.7.2-py2.py3-none-any.whl -------------------------------------------------------------------------------- /pep-0458-repository/repository/targets/packages/django/Django-1.7.2.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/targets/packages/django/Django-1.7.2.tar.gz -------------------------------------------------------------------------------- /pep-0458-repository/repository/targets/packages/numpy/numpy-1.9.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/targets/packages/numpy/numpy-1.9.1-cp34-cp34m-macosx_10_6_intel.macosx_10_9_intel.macosx_10_9_x86_64.macosx_10_10_intel.macosx_10_10_x86_64.whl -------------------------------------------------------------------------------- /pep-0458-repository/repository/targets/packages/numpy/numpy-1.9.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/targets/packages/numpy/numpy-1.9.1.tar.gz -------------------------------------------------------------------------------- /pep-0458-repository/repository/targets/packages/requests/requests-2.5.1-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/targets/packages/requests/requests-2.5.1-py2.py3-none-any.whl -------------------------------------------------------------------------------- /pep-0458-repository/repository/targets/packages/requests/requests-2.5.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/targets/packages/requests/requests-2.5.1.tar.gz -------------------------------------------------------------------------------- /pep-0458-repository/repository/targets/packages/warehouse/warehouse-14.2.1-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/targets/packages/warehouse/warehouse-14.2.1-py2.py3-none-any.whl -------------------------------------------------------------------------------- /pep-0458-repository/repository/targets/packages/warehouse/warehouse-14.2.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-repository/repository/targets/packages/warehouse/warehouse-14.2.1.tar.gz -------------------------------------------------------------------------------- /pep-0458-tuf-online-keys.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0458-tuf-online-keys.rst -------------------------------------------------------------------------------- /pep-0459-standard-metadata-extensions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0459-standard-metadata-extensions.rst -------------------------------------------------------------------------------- /pep-0470-removal-of-external-hosting.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0470-removal-of-external-hosting.rst -------------------------------------------------------------------------------- /pep-0496-environment-markers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0496-environment-markers.rst -------------------------------------------------------------------------------- /pep-0503-simple-repository-protocol.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0503-simple-repository-protocol.rst -------------------------------------------------------------------------------- /pep-0508-dependency-specifiers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0508-dependency-specifiers.rst -------------------------------------------------------------------------------- /pep-0516-build-system-abstraction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0516-build-system-abstraction.rst -------------------------------------------------------------------------------- /pep-0517-build-system-abstraction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/pep-0517-build-system-abstraction.rst -------------------------------------------------------------------------------- /schemas/pydist-schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/schemas/pydist-schema.json -------------------------------------------------------------------------------- /unpublished/metadata-hooks.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/interoperability-peps/HEAD/unpublished/metadata-hooks.rst --------------------------------------------------------------------------------