METADATA 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395
  1. Metadata-Version: 2.1
  2. Name: wheel
  3. Version: 0.31.1
  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. Keywords: wheel,packaging
  12. Platform: UNKNOWN
  13. Classifier: Development Status :: 5 - Production/Stable
  14. Classifier: Intended Audience :: Developers
  15. Classifier: License :: OSI Approved :: MIT License
  16. Classifier: Programming Language :: Python
  17. Classifier: Programming Language :: Python :: 2
  18. Classifier: Programming Language :: Python :: 2.7
  19. Classifier: Programming Language :: Python :: 3
  20. Classifier: Programming Language :: Python :: 3.4
  21. Classifier: Programming Language :: Python :: 3.5
  22. Classifier: Programming Language :: Python :: 3.6
  23. Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
  24. Provides-Extra: test
  25. Provides-Extra: signatures
  26. Provides-Extra: faster-signatures
  27. Provides-Extra: faster-signatures
  28. Requires-Dist: ed25519ll; extra == 'faster-signatures'
  29. Provides-Extra: signatures
  30. Requires-Dist: keyring; extra == 'signatures'
  31. Requires-Dist: keyrings.alt; extra == 'signatures'
  32. Provides-Extra: signatures
  33. Requires-Dist: pyxdg; (sys_platform!="win32") and extra == 'signatures'
  34. Provides-Extra: test
  35. Requires-Dist: pytest (>=3.0.0); extra == 'test'
  36. Requires-Dist: pytest-cov; extra == 'test'
  37. Wheel
  38. =====
  39. A built-package format for Python.
  40. A wheel is a ZIP-format archive with a specially formatted filename
  41. and the .whl extension. It is designed to contain all the files for a
  42. PEP 376 compatible install in a way that is very close to the on-disk
  43. format. Many packages will be properly installed with only the "Unpack"
  44. step (simply extracting the file onto sys.path), and the unpacked archive
  45. preserves enough information to "Spread" (copy data and scripts to their
  46. final locations) at any later time.
  47. The wheel project provides a `bdist_wheel` command for setuptools
  48. (requires setuptools >= 0.8.0). Wheel files can be installed with a
  49. newer `pip` from https://github.com/pypa/pip or with wheel's own command
  50. line utility.
  51. The wheel documentation is at https://wheel.readthedocs.io/. The file format is
  52. documented in PEP 427 (https://www.python.org/dev/peps/pep-0427/).
  53. The reference implementation is at https://github.com/pypa/wheel
  54. Why not egg?
  55. ------------
  56. Python's egg format predates the packaging related standards we have
  57. today, the most important being PEP 376 "Database of Installed Python
  58. Distributions" which specifies the .dist-info directory (instead of
  59. .egg-info) and PEP 426 "Metadata for Python Software Packages 2.0"
  60. which specifies how to express dependencies (instead of requires.txt
  61. in .egg-info).
  62. Wheel implements these things. It also provides a richer file naming
  63. convention that communicates the Python implementation and ABI as well
  64. as simply the language version used in a particular package.
  65. Unlike .egg, wheel will be a fully-documented standard at the binary
  66. level that is truly easy to install even if you do not want to use the
  67. reference implementation.
  68. Code of Conduct
  69. ---------------
  70. Everyone interacting in the wheel project's codebases, issue trackers, chat
  71. rooms, and mailing lists is expected to follow the `PyPA Code of Conduct`_.
  72. .. _PyPA Code of Conduct: https://www.pypa.io/en/latest/code-of-conduct/
  73. 0.31.1
  74. ======
  75. - Fixed arch as ``None`` when converting eggs to wheels
  76. 0.31.0
  77. ======
  78. - Fixed displaying of errors on Python 3
  79. - Fixed single digit versions in wheel files not being properly recognized
  80. - Fixed wrong character encodings being used (instead of UTF-8) to read and
  81. write ``RECORD`` (this sometimes crashed bdist_wheel too)
  82. - Enabled Zip64 support in wheels by default
  83. - Metadata-Version is now 2.1
  84. - Dropped DESCRIPTION.rst and metadata.json from the list of generated files
  85. - Dropped support for the non-standard, undocumented ``provides-extra`` and
  86. ``requires-dist`` keywords in setup.cfg metadata
  87. - Deprecated all wheel signing and signature verification commands
  88. - Removed the (already defunct) ``tool`` extras from setup.py
  89. 0.30.0
  90. ======
  91. - Added py-limited-api {cp32|cp33|cp34|...} flag to produce cpNN.abi3.{arch}
  92. tags on CPython 3.
  93. - Documented the ``license_file`` metadata key
  94. - Improved Python, abi tagging for `wheel convert`. Thanks Ales Erjavec.
  95. - Fixed `>` being prepended to lines starting with "From" in the long description
  96. - Added support for specifying a build number (as per PEP 427).
  97. Thanks Ian Cordasco.
  98. - Made the order of files in generated ZIP files deterministic.
  99. Thanks Matthias Bach.
  100. - Made the order of requirements in metadata deterministic. Thanks Chris Lamb.
  101. - Fixed `wheel install` clobbering existing files
  102. - Improved the error message when trying to verify an unsigned wheel file
  103. - Removed support for Python 2.6, 3.2 and 3.3.
  104. 0.29.0
  105. ======
  106. - Fix compression type of files in archive (Issue #155, Pull Request #62,
  107. thanks Xavier Fernandez)
  108. 0.28.0
  109. ======
  110. - Fix file modes in archive (Issue #154)
  111. 0.27.0
  112. ======
  113. - Support forcing a platform tag using `--plat-name` on pure-Python wheels, as
  114. well as nonstandard platform tags on non-pure wheels (Pull Request #60, Issue
  115. #144, thanks Andrés Díaz)
  116. - Add SOABI tags to platform-specific wheels built for Python 2.X (Pull Request
  117. #55, Issue #63, Issue #101)
  118. - Support reproducible wheel files, wheels that can be rebuilt and will hash to
  119. the same values as previous builds (Pull Request #52, Issue #143, thanks
  120. Barry Warsaw)
  121. - Support for changes in keyring >= 8.0 (Pull Request #61, thanks Jason R.
  122. Coombs)
  123. - Use the file context manager when checking if dependency_links.txt is empty,
  124. fixes problems building wheels under PyPy on Windows (Issue #150, thanks
  125. Cosimo Lupo)
  126. - Don't attempt to (recursively) create a build directory ending with `..`
  127. (invalid on all platforms, but code was only executed on Windows) (Issue #91)
  128. - Added the PyPA Code of Conduct (Pull Request #56)
  129. 0.26.0
  130. ======
  131. - Fix multiple entrypoint comparison failure on Python 3 (Issue #148)
  132. 0.25.0
  133. ======
  134. - Add Python 3.5 to tox configuration
  135. - Deterministic (sorted) metadata
  136. - Fix tagging for Python 3.5 compatibility
  137. - Support py2-none-'arch' and py3-none-'arch' tags
  138. - Treat data-only wheels as pure
  139. - Write to temporary file and rename when using wheel install --force
  140. 0.24.0
  141. ======
  142. - The python tag used for pure-python packages is now .pyN (major version
  143. only). This change actually occurred in 0.23.0 when the --python-tag
  144. option was added, but was not explicitly mentioned in the changelog then.
  145. - wininst2wheel and egg2wheel removed. Use "wheel convert [archive]"
  146. instead.
  147. - Wheel now supports setuptools style conditional requirements via the
  148. extras_require={} syntax. Separate 'extra' names from conditions using
  149. the : character. Wheel's own setup.py does this. (The empty-string
  150. extra is the same as install_requires.) These conditional requirements
  151. should work the same whether the package is installed by wheel or
  152. by setup.py.
  153. 0.23.0
  154. ======
  155. - Compatibility tag flags added to the bdist_wheel command
  156. - sdist should include files necessary for tests
  157. - 'wheel convert' can now also convert unpacked eggs to wheel
  158. - Rename pydist.json to metadata.json to avoid stepping on the PEP
  159. - The --skip-scripts option has been removed, and not generating scripts is now
  160. the default. The option was a temporary approach until installers could
  161. generate scripts themselves. That is now the case with pip 1.5 and later.
  162. Note that using pip 1.4 to install a wheel without scripts will leave the
  163. installation without entry-point wrappers. The "wheel install-scripts"
  164. command can be used to generate the scripts in such cases.
  165. - Thank you contributors
  166. 0.22.0
  167. ======
  168. - Include entry_points.txt, scripts a.k.a. commands, in experimental
  169. pydist.json
  170. - Improved test_requires parsing
  171. - Python 2.6 fixes, "wheel version" command courtesy pombredanne
  172. 0.21.0
  173. ======
  174. - Pregenerated scripts are the default again.
  175. - "setup.py bdist_wheel --skip-scripts" turns them off.
  176. - setuptools is no longer a listed requirement for the 'wheel'
  177. package. It is of course still required in order for bdist_wheel
  178. to work.
  179. - "python -m wheel" avoids importing pkg_resources until it's necessary.
  180. 0.20.0
  181. ======
  182. - No longer include console_scripts in wheels. Ordinary scripts (shell files,
  183. standalone Python files) are included as usual.
  184. - Include new command "python -m wheel install-scripts [distribution
  185. [distribution ...]]" to install the console_scripts (setuptools-style
  186. scripts using pkg_resources) for a distribution.
  187. 0.19.0
  188. ======
  189. - pymeta.json becomes pydist.json
  190. 0.18.0
  191. ======
  192. - Python 3 Unicode improvements
  193. 0.17.0
  194. ======
  195. - Support latest PEP-426 "pymeta.json" (json-format metadata)
  196. 0.16.0
  197. ======
  198. - Python 2.6 compatibility bugfix (thanks John McFarlane)
  199. - Non-prerelease version number
  200. 1.0.0a2
  201. =======
  202. - Bugfix for C-extension tags for CPython 3.3 (using SOABI)
  203. 1.0.0a1
  204. =======
  205. - Bugfix for bdist_wininst converter "wheel convert"
  206. - Bugfix for dists where "is pure" is None instead of True or False
  207. 1.0.0a0
  208. =======
  209. - Update for version 1.0 of Wheel (PEP accepted).
  210. - Python 3 fix for moving Unicode Description to metadata body
  211. - Include rudimentary API documentation in Sphinx (thanks Kevin Horn)
  212. 0.15.0
  213. ======
  214. - Various improvements
  215. 0.14.0
  216. ======
  217. - Changed the signature format to better comply with the current JWS spec.
  218. Breaks all existing signatures.
  219. - Include ``wheel unsign`` command to remove RECORD.jws from an archive.
  220. - Put the description in the newly allowed payload section of PKG-INFO
  221. (METADATA) files.
  222. 0.13.0
  223. ======
  224. - Use distutils instead of sysconfig to get installation paths; can install
  225. headers.
  226. - Improve WheelFile() sort.
  227. - Allow bootstrap installs without any pkg_resources.
  228. 0.12.0
  229. ======
  230. - Unit test for wheel.tool.install
  231. 0.11.0
  232. ======
  233. - API cleanup
  234. 0.10.3
  235. ======
  236. - Scripts fixer fix
  237. 0.10.2
  238. ======
  239. - Fix keygen
  240. 0.10.1
  241. ======
  242. - Preserve attributes on install.
  243. 0.10.0
  244. ======
  245. - Include a copy of pkg_resources. Wheel can now install into a virtualenv
  246. that does not have distribute (though most packages still require
  247. pkg_resources to actually work; wheel install distribute)
  248. - Define a new setup.cfg section [wheel]. universal=1 will
  249. apply the py2.py3-none-any tag for pure python wheels.
  250. 0.9.7
  251. =====
  252. - Only import dirspec when needed. dirspec is only needed to find the
  253. configuration for keygen/signing operations.
  254. 0.9.6
  255. =====
  256. - requires-dist from setup.cfg overwrites any requirements from setup.py
  257. Care must be taken that the requirements are the same in both cases,
  258. or just always install from wheel.
  259. - drop dirspec requirement on win32
  260. - improved command line utility, adds 'wheel convert [egg or wininst]' to
  261. convert legacy binary formats to wheel
  262. 0.9.5
  263. =====
  264. - Wheel's own wheel file can be executed by Python, and can install itself:
  265. ``python wheel-0.9.5-py27-none-any/wheel install ...``
  266. - Use argparse; basic ``wheel install`` command should run with only stdlib
  267. dependencies.
  268. - Allow requires_dist in setup.cfg's [metadata] section. In addition to
  269. dependencies in setup.py, but will only be interpreted when installing
  270. from wheel, not from sdist. Can be qualified with environment markers.
  271. 0.9.4
  272. =====
  273. - Fix wheel.signatures in sdist
  274. 0.9.3
  275. =====
  276. - Integrated digital signatures support without C extensions.
  277. - Integrated "wheel install" command (single package, no dependency
  278. resolution) including compatibility check.
  279. - Support Python 3.3
  280. - Use Metadata 1.3 (PEP 426)
  281. 0.9.2
  282. =====
  283. - Automatic signing if WHEEL_TOOL points to the wheel binary
  284. - Even more Python 3 fixes
  285. 0.9.1
  286. =====
  287. - 'wheel sign' uses the keys generated by 'wheel keygen' (instead of generating
  288. a new key at random each time)
  289. - Python 2/3 encoding/decoding fixes
  290. - Run tests on Python 2.6 (without signature verification)
  291. 0.9
  292. ===
  293. - Updated digital signatures scheme
  294. - Python 3 support for digital signatures
  295. - Always verify RECORD hashes on extract
  296. - "wheel" command line tool to sign, verify, unpack wheel files
  297. 0.8
  298. ===
  299. - none/any draft pep tags update
  300. - improved wininst2wheel script
  301. - doc changes and other improvements
  302. 0.7
  303. ===
  304. - sort .dist-info at end of wheel archive
  305. - Windows & Python 3 fixes from Paul Moore
  306. - pep8
  307. - scripts to convert wininst & egg to wheel
  308. 0.6
  309. ===
  310. - require distribute >= 0.6.28
  311. - stop using verlib
  312. 0.5
  313. ===
  314. - working pretty well
  315. 0.4.2
  316. =====
  317. - hyphenated name fix
  318. 0.4
  319. ===
  320. - improve test coverage
  321. - improve Windows compatibility
  322. - include tox.ini courtesy of Marc Abramowitz
  323. - draft hmac sha-256 signing function
  324. 0.3
  325. ===
  326. - prototype egg2wheel conversion script
  327. 0.2
  328. ===
  329. - Python 3 compatibility
  330. 0.1
  331. ===
  332. - Initial version