├── .github ├── codecov.yml └── workflows │ ├── publish.yml │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── LICENSE.txt ├── README.rst ├── docs ├── Makefile ├── conf.py ├── development.rst ├── index.rst ├── installing.rst ├── make.bat ├── manpages │ └── wheel.rst ├── news.rst ├── quickstart.rst ├── reference │ ├── index.rst │ ├── wheel_convert.rst │ ├── wheel_pack.rst │ ├── wheel_tags.rst │ └── wheel_unpack.rst ├── story.rst └── user_guide.rst ├── pyproject.toml ├── src └── wheel │ ├── __init__.py │ ├── __main__.py │ ├── _bdist_wheel.py │ ├── _commands │ ├── __init__.py │ ├── convert.py │ ├── pack.py │ ├── tags.py │ └── unpack.py │ ├── _metadata.py │ ├── bdist_wheel.py │ ├── macosx_libfile.py │ ├── metadata.py │ └── wheelfile.py └── tests ├── commands ├── __init__.py ├── test_convert.py ├── test_pack.py ├── test_tags.py ├── test_unpack.py └── util.py ├── test_bdist_wheel.py ├── test_metadata.py ├── test_sdist.py ├── test_wheelfile.py └── testdata ├── eggnames.txt └── test-1.0-py2.py3-none-any.whl /.github/codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/.github/codecov.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/development.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/docs/development.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/docs/installing.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/manpages/wheel.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/docs/manpages/wheel.rst -------------------------------------------------------------------------------- /docs/news.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/docs/news.rst -------------------------------------------------------------------------------- /docs/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/docs/quickstart.rst -------------------------------------------------------------------------------- /docs/reference/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/docs/reference/index.rst -------------------------------------------------------------------------------- /docs/reference/wheel_convert.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/docs/reference/wheel_convert.rst -------------------------------------------------------------------------------- /docs/reference/wheel_pack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/docs/reference/wheel_pack.rst -------------------------------------------------------------------------------- /docs/reference/wheel_tags.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/docs/reference/wheel_tags.rst -------------------------------------------------------------------------------- /docs/reference/wheel_unpack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/docs/reference/wheel_unpack.rst -------------------------------------------------------------------------------- /docs/story.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/docs/story.rst -------------------------------------------------------------------------------- /docs/user_guide.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/docs/user_guide.rst -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/wheel/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/src/wheel/__init__.py -------------------------------------------------------------------------------- /src/wheel/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/src/wheel/__main__.py -------------------------------------------------------------------------------- /src/wheel/_bdist_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/src/wheel/_bdist_wheel.py -------------------------------------------------------------------------------- /src/wheel/_commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/src/wheel/_commands/__init__.py -------------------------------------------------------------------------------- /src/wheel/_commands/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/src/wheel/_commands/convert.py -------------------------------------------------------------------------------- /src/wheel/_commands/pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/src/wheel/_commands/pack.py -------------------------------------------------------------------------------- /src/wheel/_commands/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/src/wheel/_commands/tags.py -------------------------------------------------------------------------------- /src/wheel/_commands/unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/src/wheel/_commands/unpack.py -------------------------------------------------------------------------------- /src/wheel/_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/src/wheel/_metadata.py -------------------------------------------------------------------------------- /src/wheel/bdist_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/src/wheel/bdist_wheel.py -------------------------------------------------------------------------------- /src/wheel/macosx_libfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/src/wheel/macosx_libfile.py -------------------------------------------------------------------------------- /src/wheel/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/src/wheel/metadata.py -------------------------------------------------------------------------------- /src/wheel/wheelfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/src/wheel/wheelfile.py -------------------------------------------------------------------------------- /tests/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/commands/test_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/tests/commands/test_convert.py -------------------------------------------------------------------------------- /tests/commands/test_pack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/tests/commands/test_pack.py -------------------------------------------------------------------------------- /tests/commands/test_tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/tests/commands/test_tags.py -------------------------------------------------------------------------------- /tests/commands/test_unpack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/tests/commands/test_unpack.py -------------------------------------------------------------------------------- /tests/commands/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/tests/commands/util.py -------------------------------------------------------------------------------- /tests/test_bdist_wheel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/tests/test_bdist_wheel.py -------------------------------------------------------------------------------- /tests/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/tests/test_metadata.py -------------------------------------------------------------------------------- /tests/test_sdist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/tests/test_sdist.py -------------------------------------------------------------------------------- /tests/test_wheelfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/tests/test_wheelfile.py -------------------------------------------------------------------------------- /tests/testdata/eggnames.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/tests/testdata/eggnames.txt -------------------------------------------------------------------------------- /tests/testdata/test-1.0-py2.py3-none-any.whl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pypa/wheel/HEAD/tests/testdata/test-1.0-py2.py3-none-any.whl --------------------------------------------------------------------------------