You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
2.2 KiB

4 years ago
  1. Metadata-Version: 2.1
  2. Name: wheel
  3. Version: 0.34.2
  4. Summary: A built-package format for Python
  5. Home-page: https://github.com/pypa/wheel
  6. Author: Daniel Holth
  7. Author-email: dholth@fastmail.fm
  8. Maintainer: Alex Grönholm
  9. Maintainer-email: alex.gronholm@nextday.fi
  10. License: MIT
  11. Project-URL: Documentation, https://wheel.readthedocs.io/
  12. Project-URL: Changelog, https://wheel.readthedocs.io/en/stable/news.html
  13. Project-URL: Issue Tracker, https://github.com/pypa/wheel/issues
  14. Keywords: wheel,packaging
  15. Platform: UNKNOWN
  16. Classifier: Development Status :: 5 - Production/Stable
  17. Classifier: Intended Audience :: Developers
  18. Classifier: Topic :: System :: Archiving :: Packaging
  19. Classifier: License :: OSI Approved :: MIT License
  20. Classifier: Programming Language :: Python
  21. Classifier: Programming Language :: Python :: 2
  22. Classifier: Programming Language :: Python :: 2.7
  23. Classifier: Programming Language :: Python :: 3
  24. Classifier: Programming Language :: Python :: 3.5
  25. Classifier: Programming Language :: Python :: 3.6
  26. Classifier: Programming Language :: Python :: 3.7
  27. Classifier: Programming Language :: Python :: 3.8
  28. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*
  29. Provides-Extra: test
  30. Requires-Dist: pytest (>=3.0.0) ; extra == 'test'
  31. Requires-Dist: pytest-cov ; extra == 'test'
  32. wheel
  33. =====
  34. This library is the reference implementation of the Python wheel packaging
  35. standard, as defined in `PEP 427`_.
  36. It has two different roles:
  37. #. A setuptools_ extension for building wheels that provides the
  38. ``bdist_wheel`` setuptools command
  39. #. A command line tool for working with wheel files
  40. It should be noted that wheel is **not** intended to be used as a library, and
  41. as such there is no stable, public API.
  42. .. _PEP 427: https://www.python.org/dev/peps/pep-0427/
  43. .. _setuptools: https://pypi.org/project/setuptools/
  44. Documentation
  45. -------------
  46. The documentation_ can be found on Read The Docs.
  47. .. _documentation: https://wheel.readthedocs.io/
  48. Code of Conduct
  49. ---------------
  50. Everyone interacting in the wheel project's codebases, issue trackers, chat
  51. rooms, and mailing lists is expected to follow the `PyPA Code of Conduct`_.
  52. .. _PyPA Code of Conduct: https://www.pypa.io/en/latest/code-of-conduct/