PKG-INFO 15 KB

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