rigid 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/bin/rigid +4 -0
- data/rigid +16 -0
- data/vendor/PyYAML-3.12.dist-info/DESCRIPTION.rst +12 -0
- data/vendor/PyYAML-3.12.dist-info/INSTALLER +1 -0
- data/vendor/PyYAML-3.12.dist-info/METADATA +35 -0
- data/vendor/PyYAML-3.12.dist-info/RECORD +42 -0
- data/vendor/PyYAML-3.12.dist-info/WHEEL +5 -0
- data/vendor/PyYAML-3.12.dist-info/metadata.json +1 -0
- data/vendor/PyYAML-3.12.dist-info/top_level.txt +2 -0
- data/vendor/_yaml.so +0 -0
- data/vendor/click/__init__.py +98 -0
- data/vendor/click/__init__.pyc +0 -0
- data/vendor/click/_bashcomplete.py +83 -0
- data/vendor/click/_bashcomplete.pyc +0 -0
- data/vendor/click/_compat.py +642 -0
- data/vendor/click/_compat.pyc +0 -0
- data/vendor/click/_termui_impl.py +547 -0
- data/vendor/click/_termui_impl.pyc +0 -0
- data/vendor/click/_textwrap.py +38 -0
- data/vendor/click/_textwrap.pyc +0 -0
- data/vendor/click/_unicodefun.py +119 -0
- data/vendor/click/_unicodefun.pyc +0 -0
- data/vendor/click/_winconsole.py +273 -0
- data/vendor/click/_winconsole.pyc +0 -0
- data/vendor/click/core.py +1738 -0
- data/vendor/click/core.pyc +0 -0
- data/vendor/click/decorators.py +304 -0
- data/vendor/click/decorators.pyc +0 -0
- data/vendor/click/exceptions.py +201 -0
- data/vendor/click/exceptions.pyc +0 -0
- data/vendor/click/formatting.py +256 -0
- data/vendor/click/formatting.pyc +0 -0
- data/vendor/click/globals.py +48 -0
- data/vendor/click/globals.pyc +0 -0
- data/vendor/click/parser.py +426 -0
- data/vendor/click/parser.pyc +0 -0
- data/vendor/click/termui.py +539 -0
- data/vendor/click/termui.pyc +0 -0
- data/vendor/click/testing.py +322 -0
- data/vendor/click/testing.pyc +0 -0
- data/vendor/click/types.py +550 -0
- data/vendor/click/types.pyc +0 -0
- data/vendor/click/utils.py +415 -0
- data/vendor/click/utils.pyc +0 -0
- data/vendor/click-6.6.dist-info/DESCRIPTION.rst +3 -0
- data/vendor/click-6.6.dist-info/INSTALLER +1 -0
- data/vendor/click-6.6.dist-info/METADATA +16 -0
- data/vendor/click-6.6.dist-info/RECORD +41 -0
- data/vendor/click-6.6.dist-info/WHEEL +6 -0
- data/vendor/click-6.6.dist-info/metadata.json +1 -0
- data/vendor/click-6.6.dist-info/top_level.txt +1 -0
- data/vendor/easy_install.py +5 -0
- data/vendor/easy_install.pyc +0 -0
- data/vendor/pip-9.0.1.dist-info/DESCRIPTION.rst +39 -0
- data/vendor/pip-9.0.1.dist-info/INSTALLER +1 -0
- data/vendor/pip-9.0.1.dist-info/METADATA +69 -0
- data/vendor/pip-9.0.1.dist-info/RECORD +501 -0
- data/vendor/pip-9.0.1.dist-info/WHEEL +6 -0
- data/vendor/pip-9.0.1.dist-info/entry_points.txt +5 -0
- data/vendor/pip-9.0.1.dist-info/metadata.json +1 -0
- data/vendor/pip-9.0.1.dist-info/top_level.txt +1 -0
- data/vendor/pkg_resources/__init__.py +3051 -0
- data/vendor/pkg_resources/__init__.pyc +0 -0
- data/vendor/pkg_resources/_vendor/__init__.py +0 -0
- data/vendor/pkg_resources/_vendor/__init__.pyc +0 -0
- data/vendor/pkg_resources/_vendor/appdirs.py +552 -0
- data/vendor/pkg_resources/_vendor/appdirs.pyc +0 -0
- data/vendor/pkg_resources/_vendor/packaging/__about__.py +21 -0
- data/vendor/pkg_resources/_vendor/packaging/__about__.pyc +0 -0
- data/vendor/pkg_resources/_vendor/packaging/__init__.py +14 -0
- data/vendor/pkg_resources/_vendor/packaging/__init__.pyc +0 -0
- data/vendor/pkg_resources/_vendor/packaging/_compat.py +30 -0
- data/vendor/pkg_resources/_vendor/packaging/_compat.pyc +0 -0
- data/vendor/pkg_resources/_vendor/packaging/_structures.py +68 -0
- data/vendor/pkg_resources/_vendor/packaging/_structures.pyc +0 -0
- data/vendor/pkg_resources/_vendor/packaging/markers.py +287 -0
- data/vendor/pkg_resources/_vendor/packaging/markers.pyc +0 -0
- data/vendor/pkg_resources/_vendor/packaging/requirements.py +127 -0
- data/vendor/pkg_resources/_vendor/packaging/requirements.pyc +0 -0
- data/vendor/pkg_resources/_vendor/packaging/specifiers.py +774 -0
- data/vendor/pkg_resources/_vendor/packaging/specifiers.pyc +0 -0
- data/vendor/pkg_resources/_vendor/packaging/utils.py +14 -0
- data/vendor/pkg_resources/_vendor/packaging/utils.pyc +0 -0
- data/vendor/pkg_resources/_vendor/packaging/version.py +393 -0
- data/vendor/pkg_resources/_vendor/packaging/version.pyc +0 -0
- data/vendor/pkg_resources/_vendor/pyparsing.py +5696 -0
- data/vendor/pkg_resources/_vendor/pyparsing.pyc +0 -0
- data/vendor/pkg_resources/_vendor/six.py +868 -0
- data/vendor/pkg_resources/_vendor/six.pyc +0 -0
- data/vendor/pkg_resources/extern/__init__.py +73 -0
- data/vendor/pkg_resources/extern/__init__.pyc +0 -0
- data/vendor/requests/__init__.py +86 -0
- data/vendor/requests/__init__.pyc +0 -0
- data/vendor/requests/adapters.py +503 -0
- data/vendor/requests/adapters.pyc +0 -0
- data/vendor/requests/api.py +148 -0
- data/vendor/requests/api.pyc +0 -0
- data/vendor/requests/auth.py +252 -0
- data/vendor/requests/auth.pyc +0 -0
- data/vendor/requests/cacert.pem +5616 -0
- data/vendor/requests/certs.py +25 -0
- data/vendor/requests/certs.pyc +0 -0
- data/vendor/requests/compat.py +66 -0
- data/vendor/requests/compat.pyc +0 -0
- data/vendor/requests/cookies.py +540 -0
- data/vendor/requests/cookies.pyc +0 -0
- data/vendor/requests/exceptions.py +114 -0
- data/vendor/requests/exceptions.pyc +0 -0
- data/vendor/requests/hooks.py +34 -0
- data/vendor/requests/hooks.pyc +0 -0
- data/vendor/requests/models.py +873 -0
- data/vendor/requests/models.pyc +0 -0
- data/vendor/requests/packages/__init__.py +36 -0
- data/vendor/requests/packages/__init__.pyc +0 -0
- data/vendor/requests/packages/chardet/__init__.py +32 -0
- data/vendor/requests/packages/chardet/__init__.pyc +0 -0
- data/vendor/requests/packages/chardet/big5freq.py +925 -0
- data/vendor/requests/packages/chardet/big5freq.pyc +0 -0
- data/vendor/requests/packages/chardet/big5prober.py +42 -0
- data/vendor/requests/packages/chardet/big5prober.pyc +0 -0
- data/vendor/requests/packages/chardet/chardetect.py +80 -0
- data/vendor/requests/packages/chardet/chardetect.pyc +0 -0
- data/vendor/requests/packages/chardet/chardistribution.py +231 -0
- data/vendor/requests/packages/chardet/chardistribution.pyc +0 -0
- data/vendor/requests/packages/chardet/charsetgroupprober.py +106 -0
- data/vendor/requests/packages/chardet/charsetgroupprober.pyc +0 -0
- data/vendor/requests/packages/chardet/charsetprober.py +62 -0
- data/vendor/requests/packages/chardet/charsetprober.pyc +0 -0
- data/vendor/requests/packages/chardet/codingstatemachine.py +61 -0
- data/vendor/requests/packages/chardet/codingstatemachine.pyc +0 -0
- data/vendor/requests/packages/chardet/compat.py +34 -0
- data/vendor/requests/packages/chardet/compat.pyc +0 -0
- data/vendor/requests/packages/chardet/constants.py +39 -0
- data/vendor/requests/packages/chardet/constants.pyc +0 -0
- data/vendor/requests/packages/chardet/cp949prober.py +44 -0
- data/vendor/requests/packages/chardet/cp949prober.pyc +0 -0
- data/vendor/requests/packages/chardet/escprober.py +86 -0
- data/vendor/requests/packages/chardet/escprober.pyc +0 -0
- data/vendor/requests/packages/chardet/escsm.py +242 -0
- data/vendor/requests/packages/chardet/escsm.pyc +0 -0
- data/vendor/requests/packages/chardet/eucjpprober.py +90 -0
- data/vendor/requests/packages/chardet/eucjpprober.pyc +0 -0
- data/vendor/requests/packages/chardet/euckrfreq.py +596 -0
- data/vendor/requests/packages/chardet/euckrfreq.pyc +0 -0
- data/vendor/requests/packages/chardet/euckrprober.py +42 -0
- data/vendor/requests/packages/chardet/euckrprober.pyc +0 -0
- data/vendor/requests/packages/chardet/euctwfreq.py +428 -0
- data/vendor/requests/packages/chardet/euctwfreq.pyc +0 -0
- data/vendor/requests/packages/chardet/euctwprober.py +41 -0
- data/vendor/requests/packages/chardet/euctwprober.pyc +0 -0
- data/vendor/requests/packages/chardet/gb2312freq.py +472 -0
- data/vendor/requests/packages/chardet/gb2312freq.pyc +0 -0
- data/vendor/requests/packages/chardet/gb2312prober.py +41 -0
- data/vendor/requests/packages/chardet/gb2312prober.pyc +0 -0
- data/vendor/requests/packages/chardet/hebrewprober.py +283 -0
- data/vendor/requests/packages/chardet/hebrewprober.pyc +0 -0
- data/vendor/requests/packages/chardet/jisfreq.py +569 -0
- data/vendor/requests/packages/chardet/jisfreq.pyc +0 -0
- data/vendor/requests/packages/chardet/jpcntx.py +227 -0
- data/vendor/requests/packages/chardet/jpcntx.pyc +0 -0
- data/vendor/requests/packages/chardet/langbulgarianmodel.py +229 -0
- data/vendor/requests/packages/chardet/langbulgarianmodel.pyc +0 -0
- data/vendor/requests/packages/chardet/langcyrillicmodel.py +329 -0
- data/vendor/requests/packages/chardet/langcyrillicmodel.pyc +0 -0
- data/vendor/requests/packages/chardet/langgreekmodel.py +225 -0
- data/vendor/requests/packages/chardet/langgreekmodel.pyc +0 -0
- data/vendor/requests/packages/chardet/langhebrewmodel.py +201 -0
- data/vendor/requests/packages/chardet/langhebrewmodel.pyc +0 -0
- data/vendor/requests/packages/chardet/langhungarianmodel.py +225 -0
- data/vendor/requests/packages/chardet/langhungarianmodel.pyc +0 -0
- data/vendor/requests/packages/chardet/langthaimodel.py +200 -0
- data/vendor/requests/packages/chardet/langthaimodel.pyc +0 -0
- data/vendor/requests/packages/chardet/latin1prober.py +139 -0
- data/vendor/requests/packages/chardet/latin1prober.pyc +0 -0
- data/vendor/requests/packages/chardet/mbcharsetprober.py +86 -0
- data/vendor/requests/packages/chardet/mbcharsetprober.pyc +0 -0
- data/vendor/requests/packages/chardet/mbcsgroupprober.py +54 -0
- data/vendor/requests/packages/chardet/mbcsgroupprober.pyc +0 -0
- data/vendor/requests/packages/chardet/mbcssm.py +572 -0
- data/vendor/requests/packages/chardet/mbcssm.pyc +0 -0
- data/vendor/requests/packages/chardet/sbcharsetprober.py +120 -0
- data/vendor/requests/packages/chardet/sbcharsetprober.pyc +0 -0
- data/vendor/requests/packages/chardet/sbcsgroupprober.py +69 -0
- data/vendor/requests/packages/chardet/sbcsgroupprober.pyc +0 -0
- data/vendor/requests/packages/chardet/sjisprober.py +91 -0
- data/vendor/requests/packages/chardet/sjisprober.pyc +0 -0
- data/vendor/requests/packages/chardet/universaldetector.py +170 -0
- data/vendor/requests/packages/chardet/universaldetector.pyc +0 -0
- data/vendor/requests/packages/chardet/utf8prober.py +76 -0
- data/vendor/requests/packages/chardet/utf8prober.pyc +0 -0
- data/vendor/requests/packages/urllib3/__init__.py +96 -0
- data/vendor/requests/packages/urllib3/__init__.pyc +0 -0
- data/vendor/requests/packages/urllib3/_collections.py +324 -0
- data/vendor/requests/packages/urllib3/_collections.pyc +0 -0
- data/vendor/requests/packages/urllib3/connection.py +330 -0
- data/vendor/requests/packages/urllib3/connection.pyc +0 -0
- data/vendor/requests/packages/urllib3/connectionpool.py +866 -0
- data/vendor/requests/packages/urllib3/connectionpool.pyc +0 -0
- data/vendor/requests/packages/urllib3/contrib/__init__.py +0 -0
- data/vendor/requests/packages/urllib3/contrib/__init__.pyc +0 -0
- data/vendor/requests/packages/urllib3/contrib/appengine.py +231 -0
- data/vendor/requests/packages/urllib3/contrib/appengine.pyc +0 -0
- data/vendor/requests/packages/urllib3/contrib/ntlmpool.py +115 -0
- data/vendor/requests/packages/urllib3/contrib/ntlmpool.pyc +0 -0
- data/vendor/requests/packages/urllib3/contrib/pyopenssl.py +358 -0
- data/vendor/requests/packages/urllib3/contrib/pyopenssl.pyc +0 -0
- data/vendor/requests/packages/urllib3/contrib/socks.py +172 -0
- data/vendor/requests/packages/urllib3/contrib/socks.pyc +0 -0
- data/vendor/requests/packages/urllib3/exceptions.py +209 -0
- data/vendor/requests/packages/urllib3/exceptions.pyc +0 -0
- data/vendor/requests/packages/urllib3/fields.py +178 -0
- data/vendor/requests/packages/urllib3/fields.pyc +0 -0
- data/vendor/requests/packages/urllib3/filepost.py +94 -0
- data/vendor/requests/packages/urllib3/filepost.pyc +0 -0
- data/vendor/requests/packages/urllib3/packages/__init__.py +5 -0
- data/vendor/requests/packages/urllib3/packages/__init__.pyc +0 -0
- data/vendor/requests/packages/urllib3/packages/ordered_dict.py +259 -0
- data/vendor/requests/packages/urllib3/packages/ordered_dict.pyc +0 -0
- data/vendor/requests/packages/urllib3/packages/six.py +868 -0
- data/vendor/requests/packages/urllib3/packages/six.pyc +0 -0
- data/vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.py +13 -0
- data/vendor/requests/packages/urllib3/packages/ssl_match_hostname/__init__.pyc +0 -0
- data/vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.py +105 -0
- data/vendor/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.pyc +0 -0
- data/vendor/requests/packages/urllib3/poolmanager.py +367 -0
- data/vendor/requests/packages/urllib3/poolmanager.pyc +0 -0
- data/vendor/requests/packages/urllib3/request.py +151 -0
- data/vendor/requests/packages/urllib3/request.pyc +0 -0
- data/vendor/requests/packages/urllib3/response.py +530 -0
- data/vendor/requests/packages/urllib3/response.pyc +0 -0
- data/vendor/requests/packages/urllib3/util/__init__.py +46 -0
- data/vendor/requests/packages/urllib3/util/__init__.pyc +0 -0
- data/vendor/requests/packages/urllib3/util/connection.py +144 -0
- data/vendor/requests/packages/urllib3/util/connection.pyc +0 -0
- data/vendor/requests/packages/urllib3/util/request.py +72 -0
- data/vendor/requests/packages/urllib3/util/request.pyc +0 -0
- data/vendor/requests/packages/urllib3/util/response.py +74 -0
- data/vendor/requests/packages/urllib3/util/response.pyc +0 -0
- data/vendor/requests/packages/urllib3/util/retry.py +300 -0
- data/vendor/requests/packages/urllib3/util/retry.pyc +0 -0
- data/vendor/requests/packages/urllib3/util/ssl_.py +320 -0
- data/vendor/requests/packages/urllib3/util/ssl_.pyc +0 -0
- data/vendor/requests/packages/urllib3/util/timeout.py +242 -0
- data/vendor/requests/packages/urllib3/util/timeout.pyc +0 -0
- data/vendor/requests/packages/urllib3/util/url.py +217 -0
- data/vendor/requests/packages/urllib3/util/url.pyc +0 -0
- data/vendor/requests/sessions.py +712 -0
- data/vendor/requests/sessions.pyc +0 -0
- data/vendor/requests/status_codes.py +91 -0
- data/vendor/requests/status_codes.pyc +0 -0
- data/vendor/requests/structures.py +105 -0
- data/vendor/requests/structures.pyc +0 -0
- data/vendor/requests/utils.py +817 -0
- data/vendor/requests/utils.pyc +0 -0
- data/vendor/requests-2.11.1.dist-info/DESCRIPTION.rst +1294 -0
- data/vendor/requests-2.11.1.dist-info/INSTALLER +1 -0
- data/vendor/requests-2.11.1.dist-info/METADATA +1323 -0
- data/vendor/requests-2.11.1.dist-info/RECORD +170 -0
- data/vendor/requests-2.11.1.dist-info/WHEEL +6 -0
- data/vendor/requests-2.11.1.dist-info/metadata.json +1 -0
- data/vendor/requests-2.11.1.dist-info/top_level.txt +1 -0
- data/vendor/rigid/__init__.py +1 -0
- data/vendor/rigid/__init__.pyc +0 -0
- data/vendor/rigid/api.py +129 -0
- data/vendor/rigid/api.pyc +0 -0
- data/vendor/rigid/commands/__init__.py +260 -0
- data/vendor/rigid/commands/__init__.pyc +0 -0
- data/vendor/rigid/commands/deploy.py +0 -0
- data/vendor/rigid/commands/deploy.pyc +0 -0
- data/vendor/rigid/deploy.py +70 -0
- data/vendor/rigid/deploy.pyc +0 -0
- data/vendor/rigid/file_scanner.py +63 -0
- data/vendor/rigid/file_scanner.pyc +0 -0
- data/vendor/rigid/utils.py +17 -0
- data/vendor/rigid/utils.pyc +0 -0
- data/vendor/rigid-0.2.0.dist-info/DESCRIPTION.rst +3 -0
- data/vendor/rigid-0.2.0.dist-info/INSTALLER +1 -0
- data/vendor/rigid-0.2.0.dist-info/METADATA +23 -0
- data/vendor/rigid-0.2.0.dist-info/RECORD +49 -0
- data/vendor/rigid-0.2.0.dist-info/WHEEL +5 -0
- data/vendor/rigid-0.2.0.dist-info/entry_points.txt +3 -0
- data/vendor/rigid-0.2.0.dist-info/metadata.json +1 -0
- data/vendor/rigid-0.2.0.dist-info/top_level.txt +2 -0
- data/vendor/setuptools-28.8.0.dist-info/DESCRIPTION.rst +243 -0
- data/vendor/setuptools-28.8.0.dist-info/INSTALLER +1 -0
- data/vendor/setuptools-28.8.0.dist-info/METADATA +272 -0
- data/vendor/setuptools-28.8.0.dist-info/RECORD +143 -0
- data/vendor/setuptools-28.8.0.dist-info/WHEEL +6 -0
- data/vendor/setuptools-28.8.0.dist-info/dependency_links.txt +2 -0
- data/vendor/setuptools-28.8.0.dist-info/entry_points.txt +63 -0
- data/vendor/setuptools-28.8.0.dist-info/metadata.json +1 -0
- data/vendor/setuptools-28.8.0.dist-info/top_level.txt +3 -0
- data/vendor/setuptools-28.8.0.dist-info/zip-safe +1 -0
- data/vendor/tests/__init__.py +0 -0
- data/vendor/tests/__init__.pyc +0 -0
- data/vendor/tests/integration/__init__.py +0 -0
- data/vendor/tests/integration/__init__.pyc +0 -0
- data/vendor/tests/integration/test_app.py +63 -0
- data/vendor/tests/integration/test_app.pyc +0 -0
- data/vendor/tests/integration/test_apps.py +27 -0
- data/vendor/tests/integration/test_apps.pyc +0 -0
- data/vendor/tests/integration/test_deploy.py +128 -0
- data/vendor/tests/integration/test_deploy.pyc +0 -0
- data/vendor/tests/integration/test_domains.py +35 -0
- data/vendor/tests/integration/test_domains.pyc +0 -0
- data/vendor/tests/integration/test_login.py +37 -0
- data/vendor/tests/integration/test_login.pyc +0 -0
- data/vendor/tests/integration/test_promote.py +24 -0
- data/vendor/tests/integration/test_promote.pyc +0 -0
- data/vendor/tests/integration/test_token.py +33 -0
- data/vendor/tests/integration/test_token.pyc +0 -0
- data/vendor/tests/integration/test_whoami.py +24 -0
- data/vendor/tests/integration/test_whoami.pyc +0 -0
- data/vendor/tests/test_deploy.py +33 -0
- data/vendor/tests/test_deploy.pyc +0 -0
- data/vendor/tests/test_file_scanner.py +89 -0
- data/vendor/tests/test_file_scanner.pyc +0 -0
- data/vendor/tests/utils.py +78 -0
- data/vendor/tests/utils.pyc +0 -0
- data/vendor/wheel-0.30.0a0.dist-info/DESCRIPTION.rst +325 -0
- data/vendor/wheel-0.30.0a0.dist-info/INSTALLER +1 -0
- data/vendor/wheel-0.30.0a0.dist-info/LICENSE.txt +22 -0
- data/vendor/wheel-0.30.0a0.dist-info/METADATA +357 -0
- data/vendor/wheel-0.30.0a0.dist-info/RECORD +86 -0
- data/vendor/wheel-0.30.0a0.dist-info/WHEEL +6 -0
- data/vendor/wheel-0.30.0a0.dist-info/entry_points.txt +6 -0
- data/vendor/wheel-0.30.0a0.dist-info/metadata.json +1 -0
- data/vendor/wheel-0.30.0a0.dist-info/top_level.txt +1 -0
- data/vendor/yaml/__init__.py +315 -0
- data/vendor/yaml/__init__.pyc +0 -0
- data/vendor/yaml/composer.py +139 -0
- data/vendor/yaml/composer.pyc +0 -0
- data/vendor/yaml/constructor.py +675 -0
- data/vendor/yaml/constructor.pyc +0 -0
- data/vendor/yaml/cyaml.py +85 -0
- data/vendor/yaml/cyaml.pyc +0 -0
- data/vendor/yaml/dumper.py +62 -0
- data/vendor/yaml/dumper.pyc +0 -0
- data/vendor/yaml/emitter.py +1140 -0
- data/vendor/yaml/emitter.pyc +0 -0
- data/vendor/yaml/error.py +75 -0
- data/vendor/yaml/error.pyc +0 -0
- data/vendor/yaml/events.py +86 -0
- data/vendor/yaml/events.pyc +0 -0
- data/vendor/yaml/loader.py +40 -0
- data/vendor/yaml/loader.pyc +0 -0
- data/vendor/yaml/nodes.py +49 -0
- data/vendor/yaml/nodes.pyc +0 -0
- data/vendor/yaml/parser.py +589 -0
- data/vendor/yaml/parser.pyc +0 -0
- data/vendor/yaml/reader.py +190 -0
- data/vendor/yaml/reader.pyc +0 -0
- data/vendor/yaml/representer.py +486 -0
- data/vendor/yaml/representer.pyc +0 -0
- data/vendor/yaml/resolver.py +227 -0
- data/vendor/yaml/resolver.pyc +0 -0
- data/vendor/yaml/scanner.py +1453 -0
- data/vendor/yaml/scanner.pyc +0 -0
- data/vendor/yaml/serializer.py +111 -0
- data/vendor/yaml/serializer.pyc +0 -0
- data/vendor/yaml/tokens.py +104 -0
- data/vendor/yaml/tokens.pyc +0 -0
- metadata +407 -0
@@ -0,0 +1,325 @@
|
|
1
|
+
Wheel
|
2
|
+
=====
|
3
|
+
|
4
|
+
A built-package format for Python.
|
5
|
+
|
6
|
+
A wheel is a ZIP-format archive with a specially formatted filename
|
7
|
+
and the .whl extension. It is designed to contain all the files for a
|
8
|
+
PEP 376 compatible install in a way that is very close to the on-disk
|
9
|
+
format. Many packages will be properly installed with only the "Unpack"
|
10
|
+
step (simply extracting the file onto sys.path), and the unpacked archive
|
11
|
+
preserves enough information to "Spread" (copy data and scripts to their
|
12
|
+
final locations) at any later time.
|
13
|
+
|
14
|
+
The wheel project provides a `bdist_wheel` command for setuptools
|
15
|
+
(requires setuptools >= 0.8.0). Wheel files can be installed with a
|
16
|
+
newer `pip` from https://github.com/pypa/pip or with wheel's own command
|
17
|
+
line utility.
|
18
|
+
|
19
|
+
The wheel documentation is at http://wheel.rtfd.org/. The file format
|
20
|
+
is documented in PEP 427 (http://www.python.org/dev/peps/pep-0427/).
|
21
|
+
|
22
|
+
The reference implementation is at https://bitbucket.org/pypa/wheel
|
23
|
+
|
24
|
+
Why not egg?
|
25
|
+
------------
|
26
|
+
|
27
|
+
Python's egg format predates the packaging related standards we have
|
28
|
+
today, the most important being PEP 376 "Database of Installed Python
|
29
|
+
Distributions" which specifies the .dist-info directory (instead of
|
30
|
+
.egg-info) and PEP 426 "Metadata for Python Software Packages 2.0"
|
31
|
+
which specifies how to express dependencies (instead of requires.txt
|
32
|
+
in .egg-info).
|
33
|
+
|
34
|
+
Wheel implements these things. It also provides a richer file naming
|
35
|
+
convention that communicates the Python implementation and ABI as well
|
36
|
+
as simply the language version used in a particular package.
|
37
|
+
|
38
|
+
Unlike .egg, wheel will be a fully-documented standard at the binary
|
39
|
+
level that is truly easy to install even if you do not want to use the
|
40
|
+
reference implementation.
|
41
|
+
|
42
|
+
|
43
|
+
Code of Conduct
|
44
|
+
---------------
|
45
|
+
|
46
|
+
Everyone interacting in the wheel project's codebases, issue trackers, chat
|
47
|
+
rooms, and mailing lists is expected to follow the `PyPA Code of Conduct`_.
|
48
|
+
|
49
|
+
.. _PyPA Code of Conduct: https://www.pypa.io/en/latest/code-of-conduct/
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
0.29.0
|
54
|
+
======
|
55
|
+
- Fix compression type of files in archive (Issue #155, Pull Request #62,
|
56
|
+
thanks Xavier Fernandez)
|
57
|
+
|
58
|
+
0.28.0
|
59
|
+
======
|
60
|
+
- Fix file modes in archive (Issue #154)
|
61
|
+
|
62
|
+
0.27.0
|
63
|
+
======
|
64
|
+
- Support forcing a platform tag using `--plat-name` on pure-Python wheels, as
|
65
|
+
well as nonstandard platform tags on non-pure wheels (Pull Request #60, Issue
|
66
|
+
#144, thanks Andrés Díaz)
|
67
|
+
- Add SOABI tags to platform-specific wheels built for Python 2.X (Pull Request
|
68
|
+
#55, Issue #63, Issue #101)
|
69
|
+
- Support reproducible wheel files, wheels that can be rebuilt and will hash to
|
70
|
+
the same values as previous builds (Pull Request #52, Issue #143, thanks
|
71
|
+
Barry Warsaw)
|
72
|
+
- Support for changes in keyring >= 8.0 (Pull Request #61, thanks Jason R.
|
73
|
+
Coombs)
|
74
|
+
- Use the file context manager when checking if dependency_links.txt is empty,
|
75
|
+
fixes problems building wheels under PyPy on Windows (Issue #150, thanks
|
76
|
+
Cosimo Lupo)
|
77
|
+
- Don't attempt to (recursively) create a build directory ending with `..`
|
78
|
+
(invalid on all platforms, but code was only executed on Windows) (Issue #91)
|
79
|
+
- Added the PyPA Code of Conduct (Pull Request #56)
|
80
|
+
|
81
|
+
0.26.0
|
82
|
+
======
|
83
|
+
- Fix multiple entrypoint comparison failure on Python 3 (Issue #148)
|
84
|
+
|
85
|
+
0.25.0
|
86
|
+
======
|
87
|
+
- Add Python 3.5 to tox configuration
|
88
|
+
- Deterministic (sorted) metadata
|
89
|
+
- Fix tagging for Python 3.5 compatibility
|
90
|
+
- Support py2-none-'arch' and py3-none-'arch' tags
|
91
|
+
- Treat data-only wheels as pure
|
92
|
+
- Write to temporary file and rename when using wheel install --force
|
93
|
+
|
94
|
+
0.24.0
|
95
|
+
======
|
96
|
+
- The python tag used for pure-python packages is now .pyN (major version
|
97
|
+
only). This change actually occurred in 0.23.0 when the --python-tag
|
98
|
+
option was added, but was not explicitly mentioned in the changelog then.
|
99
|
+
- wininst2wheel and egg2wheel removed. Use "wheel convert [archive]"
|
100
|
+
instead.
|
101
|
+
- Wheel now supports setuptools style conditional requirements via the
|
102
|
+
extras_require={} syntax. Separate 'extra' names from conditions using
|
103
|
+
the : character. Wheel's own setup.py does this. (The empty-string
|
104
|
+
extra is the same as install_requires.) These conditional requirements
|
105
|
+
should work the same whether the package is installed by wheel or
|
106
|
+
by setup.py.
|
107
|
+
|
108
|
+
0.23.0
|
109
|
+
======
|
110
|
+
- Compatibility tag flags added to the bdist_wheel command
|
111
|
+
- sdist should include files necessary for tests
|
112
|
+
- 'wheel convert' can now also convert unpacked eggs to wheel
|
113
|
+
- Rename pydist.json to metadata.json to avoid stepping on the PEP
|
114
|
+
- The --skip-scripts option has been removed, and not generating scripts is now
|
115
|
+
the default. The option was a temporary approach until installers could
|
116
|
+
generate scripts themselves. That is now the case with pip 1.5 and later.
|
117
|
+
Note that using pip 1.4 to install a wheel without scripts will leave the
|
118
|
+
installation without entry-point wrappers. The "wheel install-scripts"
|
119
|
+
command can be used to generate the scripts in such cases.
|
120
|
+
- Thank you contributors
|
121
|
+
|
122
|
+
0.22.0
|
123
|
+
======
|
124
|
+
- Include entry_points.txt, scripts a.k.a. commands, in experimental
|
125
|
+
pydist.json
|
126
|
+
- Improved test_requires parsing
|
127
|
+
- Python 2.6 fixes, "wheel version" command courtesy pombredanne
|
128
|
+
|
129
|
+
0.21.0
|
130
|
+
======
|
131
|
+
- Pregenerated scripts are the default again.
|
132
|
+
- "setup.py bdist_wheel --skip-scripts" turns them off.
|
133
|
+
- setuptools is no longer a listed requirement for the 'wheel'
|
134
|
+
package. It is of course still required in order for bdist_wheel
|
135
|
+
to work.
|
136
|
+
- "python -m wheel" avoids importing pkg_resources until it's necessary.
|
137
|
+
|
138
|
+
0.20.0
|
139
|
+
======
|
140
|
+
- No longer include console_scripts in wheels. Ordinary scripts (shell files,
|
141
|
+
standalone Python files) are included as usual.
|
142
|
+
- Include new command "python -m wheel install-scripts [distribution
|
143
|
+
[distribution ...]]" to install the console_scripts (setuptools-style
|
144
|
+
scripts using pkg_resources) for a distribution.
|
145
|
+
|
146
|
+
0.19.0
|
147
|
+
======
|
148
|
+
- pymeta.json becomes pydist.json
|
149
|
+
|
150
|
+
0.18.0
|
151
|
+
======
|
152
|
+
- Python 3 Unicode improvements
|
153
|
+
|
154
|
+
0.17.0
|
155
|
+
======
|
156
|
+
- Support latest PEP-426 "pymeta.json" (json-format metadata)
|
157
|
+
|
158
|
+
0.16.0
|
159
|
+
======
|
160
|
+
- Python 2.6 compatibility bugfix (thanks John McFarlane)
|
161
|
+
- Non-prerelease version number
|
162
|
+
|
163
|
+
1.0.0a2
|
164
|
+
=======
|
165
|
+
- Bugfix for C-extension tags for CPython 3.3 (using SOABI)
|
166
|
+
|
167
|
+
1.0.0a1
|
168
|
+
=======
|
169
|
+
- Bugfix for bdist_wininst converter "wheel convert"
|
170
|
+
- Bugfix for dists where "is pure" is None instead of True or False
|
171
|
+
|
172
|
+
1.0.0a0
|
173
|
+
=======
|
174
|
+
- Update for version 1.0 of Wheel (PEP accepted).
|
175
|
+
- Python 3 fix for moving Unicode Description to metadata body
|
176
|
+
- Include rudimentary API documentation in Sphinx (thanks Kevin Horn)
|
177
|
+
|
178
|
+
0.15.0
|
179
|
+
======
|
180
|
+
- Various improvements
|
181
|
+
|
182
|
+
0.14.0
|
183
|
+
======
|
184
|
+
- Changed the signature format to better comply with the current JWS spec.
|
185
|
+
Breaks all existing signatures.
|
186
|
+
- Include ``wheel unsign`` command to remove RECORD.jws from an archive.
|
187
|
+
- Put the description in the newly allowed payload section of PKG-INFO
|
188
|
+
(METADATA) files.
|
189
|
+
|
190
|
+
0.13.0
|
191
|
+
======
|
192
|
+
- Use distutils instead of sysconfig to get installation paths; can install
|
193
|
+
headers.
|
194
|
+
- Improve WheelFile() sort.
|
195
|
+
- Allow bootstrap installs without any pkg_resources.
|
196
|
+
|
197
|
+
0.12.0
|
198
|
+
======
|
199
|
+
- Unit test for wheel.tool.install
|
200
|
+
|
201
|
+
0.11.0
|
202
|
+
======
|
203
|
+
- API cleanup
|
204
|
+
|
205
|
+
0.10.3
|
206
|
+
======
|
207
|
+
- Scripts fixer fix
|
208
|
+
|
209
|
+
0.10.2
|
210
|
+
======
|
211
|
+
- Fix keygen
|
212
|
+
|
213
|
+
0.10.1
|
214
|
+
======
|
215
|
+
- Preserve attributes on install.
|
216
|
+
|
217
|
+
0.10.0
|
218
|
+
======
|
219
|
+
- Include a copy of pkg_resources. Wheel can now install into a virtualenv
|
220
|
+
that does not have distribute (though most packages still require
|
221
|
+
pkg_resources to actually work; wheel install distribute)
|
222
|
+
- Define a new setup.cfg section [wheel]. universal=1 will
|
223
|
+
apply the py2.py3-none-any tag for pure python wheels.
|
224
|
+
|
225
|
+
0.9.7
|
226
|
+
=====
|
227
|
+
- Only import dirspec when needed. dirspec is only needed to find the
|
228
|
+
configuration for keygen/signing operations.
|
229
|
+
|
230
|
+
0.9.6
|
231
|
+
=====
|
232
|
+
- requires-dist from setup.cfg overwrites any requirements from setup.py
|
233
|
+
Care must be taken that the requirements are the same in both cases,
|
234
|
+
or just always install from wheel.
|
235
|
+
- drop dirspec requirement on win32
|
236
|
+
- improved command line utility, adds 'wheel convert [egg or wininst]' to
|
237
|
+
convert legacy binary formats to wheel
|
238
|
+
|
239
|
+
0.9.5
|
240
|
+
=====
|
241
|
+
- Wheel's own wheel file can be executed by Python, and can install itself:
|
242
|
+
``python wheel-0.9.5-py27-none-any/wheel install ...``
|
243
|
+
- Use argparse; basic ``wheel install`` command should run with only stdlib
|
244
|
+
dependencies.
|
245
|
+
- Allow requires_dist in setup.cfg's [metadata] section. In addition to
|
246
|
+
dependencies in setup.py, but will only be interpreted when installing
|
247
|
+
from wheel, not from sdist. Can be qualified with environment markers.
|
248
|
+
|
249
|
+
0.9.4
|
250
|
+
=====
|
251
|
+
- Fix wheel.signatures in sdist
|
252
|
+
|
253
|
+
0.9.3
|
254
|
+
=====
|
255
|
+
- Integrated digital signatures support without C extensions.
|
256
|
+
- Integrated "wheel install" command (single package, no dependency
|
257
|
+
resolution) including compatibility check.
|
258
|
+
- Support Python 3.3
|
259
|
+
- Use Metadata 1.3 (PEP 426)
|
260
|
+
|
261
|
+
0.9.2
|
262
|
+
=====
|
263
|
+
- Automatic signing if WHEEL_TOOL points to the wheel binary
|
264
|
+
- Even more Python 3 fixes
|
265
|
+
|
266
|
+
0.9.1
|
267
|
+
=====
|
268
|
+
- 'wheel sign' uses the keys generated by 'wheel keygen' (instead of generating
|
269
|
+
a new key at random each time)
|
270
|
+
- Python 2/3 encoding/decoding fixes
|
271
|
+
- Run tests on Python 2.6 (without signature verification)
|
272
|
+
|
273
|
+
0.9
|
274
|
+
===
|
275
|
+
- Updated digital signatures scheme
|
276
|
+
- Python 3 support for digital signatures
|
277
|
+
- Always verify RECORD hashes on extract
|
278
|
+
- "wheel" command line tool to sign, verify, unpack wheel files
|
279
|
+
|
280
|
+
0.8
|
281
|
+
===
|
282
|
+
- none/any draft pep tags update
|
283
|
+
- improved wininst2wheel script
|
284
|
+
- doc changes and other improvements
|
285
|
+
|
286
|
+
0.7
|
287
|
+
===
|
288
|
+
- sort .dist-info at end of wheel archive
|
289
|
+
- Windows & Python 3 fixes from Paul Moore
|
290
|
+
- pep8
|
291
|
+
- scripts to convert wininst & egg to wheel
|
292
|
+
|
293
|
+
0.6
|
294
|
+
===
|
295
|
+
- require distribute >= 0.6.28
|
296
|
+
- stop using verlib
|
297
|
+
|
298
|
+
0.5
|
299
|
+
===
|
300
|
+
- working pretty well
|
301
|
+
|
302
|
+
0.4.2
|
303
|
+
=====
|
304
|
+
- hyphenated name fix
|
305
|
+
|
306
|
+
0.4
|
307
|
+
===
|
308
|
+
- improve test coverage
|
309
|
+
- improve Windows compatibility
|
310
|
+
- include tox.ini courtesy of Marc Abramowitz
|
311
|
+
- draft hmac sha-256 signing function
|
312
|
+
|
313
|
+
0.3
|
314
|
+
===
|
315
|
+
- prototype egg2wheel conversion script
|
316
|
+
|
317
|
+
0.2
|
318
|
+
===
|
319
|
+
- Python 3 compatibility
|
320
|
+
|
321
|
+
0.1
|
322
|
+
===
|
323
|
+
- Initial version
|
324
|
+
|
325
|
+
|
@@ -0,0 +1 @@
|
|
1
|
+
pip
|
@@ -0,0 +1,22 @@
|
|
1
|
+
"wheel" copyright (c) 2012-2014 Daniel Holth <dholth@fastmail.fm> and
|
2
|
+
contributors.
|
3
|
+
|
4
|
+
The MIT License
|
5
|
+
|
6
|
+
Permission is hereby granted, free of charge, to any person obtaining a
|
7
|
+
copy of this software and associated documentation files (the "Software"),
|
8
|
+
to deal in the Software without restriction, including without limitation
|
9
|
+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
10
|
+
and/or sell copies of the Software, and to permit persons to whom the
|
11
|
+
Software is furnished to do so, subject to the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be included
|
14
|
+
in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
17
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
18
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
19
|
+
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
20
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
21
|
+
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
22
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
@@ -0,0 +1,357 @@
|
|
1
|
+
Metadata-Version: 2.0
|
2
|
+
Name: wheel
|
3
|
+
Version: 0.30.0a0
|
4
|
+
Summary: A built-package format for Python.
|
5
|
+
Home-page: https://bitbucket.org/pypa/wheel/
|
6
|
+
Author: Daniel Holth
|
7
|
+
Author-email: dholth@fastmail.fm
|
8
|
+
License: MIT
|
9
|
+
Keywords: wheel,packaging
|
10
|
+
Platform: UNKNOWN
|
11
|
+
Classifier: Development Status :: 4 - Beta
|
12
|
+
Classifier: Intended Audience :: Developers
|
13
|
+
Classifier: Programming Language :: Python
|
14
|
+
Classifier: Programming Language :: Python :: 2
|
15
|
+
Classifier: Programming Language :: Python :: 2.6
|
16
|
+
Classifier: Programming Language :: Python :: 2.7
|
17
|
+
Classifier: Programming Language :: Python :: 3
|
18
|
+
Classifier: Programming Language :: Python :: 3.2
|
19
|
+
Classifier: Programming Language :: Python :: 3.3
|
20
|
+
Classifier: Programming Language :: Python :: 3.4
|
21
|
+
Requires-Dist: argparse; python_version=="2.6"
|
22
|
+
Provides-Extra: faster-signatures
|
23
|
+
Requires-Dist: ed25519ll; extra == 'faster-signatures'
|
24
|
+
Provides-Extra: signatures
|
25
|
+
Requires-Dist: keyring; extra == 'signatures'
|
26
|
+
Requires-Dist: keyrings.alt; extra == 'signatures'
|
27
|
+
Provides-Extra: signatures
|
28
|
+
Requires-Dist: importlib; python_version=="2.6" and extra == 'signatures'
|
29
|
+
Provides-Extra: signatures
|
30
|
+
Requires-Dist: pyxdg; sys_platform!="win32" and extra == 'signatures'
|
31
|
+
Provides-Extra: tool
|
32
|
+
|
33
|
+
Wheel
|
34
|
+
=====
|
35
|
+
|
36
|
+
A built-package format for Python.
|
37
|
+
|
38
|
+
A wheel is a ZIP-format archive with a specially formatted filename
|
39
|
+
and the .whl extension. It is designed to contain all the files for a
|
40
|
+
PEP 376 compatible install in a way that is very close to the on-disk
|
41
|
+
format. Many packages will be properly installed with only the "Unpack"
|
42
|
+
step (simply extracting the file onto sys.path), and the unpacked archive
|
43
|
+
preserves enough information to "Spread" (copy data and scripts to their
|
44
|
+
final locations) at any later time.
|
45
|
+
|
46
|
+
The wheel project provides a `bdist_wheel` command for setuptools
|
47
|
+
(requires setuptools >= 0.8.0). Wheel files can be installed with a
|
48
|
+
newer `pip` from https://github.com/pypa/pip or with wheel's own command
|
49
|
+
line utility.
|
50
|
+
|
51
|
+
The wheel documentation is at http://wheel.rtfd.org/. The file format
|
52
|
+
is documented in PEP 427 (http://www.python.org/dev/peps/pep-0427/).
|
53
|
+
|
54
|
+
The reference implementation is at https://bitbucket.org/pypa/wheel
|
55
|
+
|
56
|
+
Why not egg?
|
57
|
+
------------
|
58
|
+
|
59
|
+
Python's egg format predates the packaging related standards we have
|
60
|
+
today, the most important being PEP 376 "Database of Installed Python
|
61
|
+
Distributions" which specifies the .dist-info directory (instead of
|
62
|
+
.egg-info) and PEP 426 "Metadata for Python Software Packages 2.0"
|
63
|
+
which specifies how to express dependencies (instead of requires.txt
|
64
|
+
in .egg-info).
|
65
|
+
|
66
|
+
Wheel implements these things. It also provides a richer file naming
|
67
|
+
convention that communicates the Python implementation and ABI as well
|
68
|
+
as simply the language version used in a particular package.
|
69
|
+
|
70
|
+
Unlike .egg, wheel will be a fully-documented standard at the binary
|
71
|
+
level that is truly easy to install even if you do not want to use the
|
72
|
+
reference implementation.
|
73
|
+
|
74
|
+
|
75
|
+
Code of Conduct
|
76
|
+
---------------
|
77
|
+
|
78
|
+
Everyone interacting in the wheel project's codebases, issue trackers, chat
|
79
|
+
rooms, and mailing lists is expected to follow the `PyPA Code of Conduct`_.
|
80
|
+
|
81
|
+
.. _PyPA Code of Conduct: https://www.pypa.io/en/latest/code-of-conduct/
|
82
|
+
|
83
|
+
|
84
|
+
|
85
|
+
0.29.0
|
86
|
+
======
|
87
|
+
- Fix compression type of files in archive (Issue #155, Pull Request #62,
|
88
|
+
thanks Xavier Fernandez)
|
89
|
+
|
90
|
+
0.28.0
|
91
|
+
======
|
92
|
+
- Fix file modes in archive (Issue #154)
|
93
|
+
|
94
|
+
0.27.0
|
95
|
+
======
|
96
|
+
- Support forcing a platform tag using `--plat-name` on pure-Python wheels, as
|
97
|
+
well as nonstandard platform tags on non-pure wheels (Pull Request #60, Issue
|
98
|
+
#144, thanks Andrés Díaz)
|
99
|
+
- Add SOABI tags to platform-specific wheels built for Python 2.X (Pull Request
|
100
|
+
#55, Issue #63, Issue #101)
|
101
|
+
- Support reproducible wheel files, wheels that can be rebuilt and will hash to
|
102
|
+
the same values as previous builds (Pull Request #52, Issue #143, thanks
|
103
|
+
Barry Warsaw)
|
104
|
+
- Support for changes in keyring >= 8.0 (Pull Request #61, thanks Jason R.
|
105
|
+
Coombs)
|
106
|
+
- Use the file context manager when checking if dependency_links.txt is empty,
|
107
|
+
fixes problems building wheels under PyPy on Windows (Issue #150, thanks
|
108
|
+
Cosimo Lupo)
|
109
|
+
- Don't attempt to (recursively) create a build directory ending with `..`
|
110
|
+
(invalid on all platforms, but code was only executed on Windows) (Issue #91)
|
111
|
+
- Added the PyPA Code of Conduct (Pull Request #56)
|
112
|
+
|
113
|
+
0.26.0
|
114
|
+
======
|
115
|
+
- Fix multiple entrypoint comparison failure on Python 3 (Issue #148)
|
116
|
+
|
117
|
+
0.25.0
|
118
|
+
======
|
119
|
+
- Add Python 3.5 to tox configuration
|
120
|
+
- Deterministic (sorted) metadata
|
121
|
+
- Fix tagging for Python 3.5 compatibility
|
122
|
+
- Support py2-none-'arch' and py3-none-'arch' tags
|
123
|
+
- Treat data-only wheels as pure
|
124
|
+
- Write to temporary file and rename when using wheel install --force
|
125
|
+
|
126
|
+
0.24.0
|
127
|
+
======
|
128
|
+
- The python tag used for pure-python packages is now .pyN (major version
|
129
|
+
only). This change actually occurred in 0.23.0 when the --python-tag
|
130
|
+
option was added, but was not explicitly mentioned in the changelog then.
|
131
|
+
- wininst2wheel and egg2wheel removed. Use "wheel convert [archive]"
|
132
|
+
instead.
|
133
|
+
- Wheel now supports setuptools style conditional requirements via the
|
134
|
+
extras_require={} syntax. Separate 'extra' names from conditions using
|
135
|
+
the : character. Wheel's own setup.py does this. (The empty-string
|
136
|
+
extra is the same as install_requires.) These conditional requirements
|
137
|
+
should work the same whether the package is installed by wheel or
|
138
|
+
by setup.py.
|
139
|
+
|
140
|
+
0.23.0
|
141
|
+
======
|
142
|
+
- Compatibility tag flags added to the bdist_wheel command
|
143
|
+
- sdist should include files necessary for tests
|
144
|
+
- 'wheel convert' can now also convert unpacked eggs to wheel
|
145
|
+
- Rename pydist.json to metadata.json to avoid stepping on the PEP
|
146
|
+
- The --skip-scripts option has been removed, and not generating scripts is now
|
147
|
+
the default. The option was a temporary approach until installers could
|
148
|
+
generate scripts themselves. That is now the case with pip 1.5 and later.
|
149
|
+
Note that using pip 1.4 to install a wheel without scripts will leave the
|
150
|
+
installation without entry-point wrappers. The "wheel install-scripts"
|
151
|
+
command can be used to generate the scripts in such cases.
|
152
|
+
- Thank you contributors
|
153
|
+
|
154
|
+
0.22.0
|
155
|
+
======
|
156
|
+
- Include entry_points.txt, scripts a.k.a. commands, in experimental
|
157
|
+
pydist.json
|
158
|
+
- Improved test_requires parsing
|
159
|
+
- Python 2.6 fixes, "wheel version" command courtesy pombredanne
|
160
|
+
|
161
|
+
0.21.0
|
162
|
+
======
|
163
|
+
- Pregenerated scripts are the default again.
|
164
|
+
- "setup.py bdist_wheel --skip-scripts" turns them off.
|
165
|
+
- setuptools is no longer a listed requirement for the 'wheel'
|
166
|
+
package. It is of course still required in order for bdist_wheel
|
167
|
+
to work.
|
168
|
+
- "python -m wheel" avoids importing pkg_resources until it's necessary.
|
169
|
+
|
170
|
+
0.20.0
|
171
|
+
======
|
172
|
+
- No longer include console_scripts in wheels. Ordinary scripts (shell files,
|
173
|
+
standalone Python files) are included as usual.
|
174
|
+
- Include new command "python -m wheel install-scripts [distribution
|
175
|
+
[distribution ...]]" to install the console_scripts (setuptools-style
|
176
|
+
scripts using pkg_resources) for a distribution.
|
177
|
+
|
178
|
+
0.19.0
|
179
|
+
======
|
180
|
+
- pymeta.json becomes pydist.json
|
181
|
+
|
182
|
+
0.18.0
|
183
|
+
======
|
184
|
+
- Python 3 Unicode improvements
|
185
|
+
|
186
|
+
0.17.0
|
187
|
+
======
|
188
|
+
- Support latest PEP-426 "pymeta.json" (json-format metadata)
|
189
|
+
|
190
|
+
0.16.0
|
191
|
+
======
|
192
|
+
- Python 2.6 compatibility bugfix (thanks John McFarlane)
|
193
|
+
- Non-prerelease version number
|
194
|
+
|
195
|
+
1.0.0a2
|
196
|
+
=======
|
197
|
+
- Bugfix for C-extension tags for CPython 3.3 (using SOABI)
|
198
|
+
|
199
|
+
1.0.0a1
|
200
|
+
=======
|
201
|
+
- Bugfix for bdist_wininst converter "wheel convert"
|
202
|
+
- Bugfix for dists where "is pure" is None instead of True or False
|
203
|
+
|
204
|
+
1.0.0a0
|
205
|
+
=======
|
206
|
+
- Update for version 1.0 of Wheel (PEP accepted).
|
207
|
+
- Python 3 fix for moving Unicode Description to metadata body
|
208
|
+
- Include rudimentary API documentation in Sphinx (thanks Kevin Horn)
|
209
|
+
|
210
|
+
0.15.0
|
211
|
+
======
|
212
|
+
- Various improvements
|
213
|
+
|
214
|
+
0.14.0
|
215
|
+
======
|
216
|
+
- Changed the signature format to better comply with the current JWS spec.
|
217
|
+
Breaks all existing signatures.
|
218
|
+
- Include ``wheel unsign`` command to remove RECORD.jws from an archive.
|
219
|
+
- Put the description in the newly allowed payload section of PKG-INFO
|
220
|
+
(METADATA) files.
|
221
|
+
|
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
|
+
|
229
|
+
0.12.0
|
230
|
+
======
|
231
|
+
- Unit test for wheel.tool.install
|
232
|
+
|
233
|
+
0.11.0
|
234
|
+
======
|
235
|
+
- API cleanup
|
236
|
+
|
237
|
+
0.10.3
|
238
|
+
======
|
239
|
+
- Scripts fixer fix
|
240
|
+
|
241
|
+
0.10.2
|
242
|
+
======
|
243
|
+
- Fix keygen
|
244
|
+
|
245
|
+
0.10.1
|
246
|
+
======
|
247
|
+
- Preserve attributes on install.
|
248
|
+
|
249
|
+
0.10.0
|
250
|
+
======
|
251
|
+
- Include a copy of pkg_resources. Wheel can now install into a virtualenv
|
252
|
+
that does not have distribute (though most packages still require
|
253
|
+
pkg_resources to actually work; wheel install distribute)
|
254
|
+
- Define a new setup.cfg section [wheel]. universal=1 will
|
255
|
+
apply the py2.py3-none-any tag for pure python wheels.
|
256
|
+
|
257
|
+
0.9.7
|
258
|
+
=====
|
259
|
+
- Only import dirspec when needed. dirspec is only needed to find the
|
260
|
+
configuration for keygen/signing operations.
|
261
|
+
|
262
|
+
0.9.6
|
263
|
+
=====
|
264
|
+
- requires-dist from setup.cfg overwrites any requirements from setup.py
|
265
|
+
Care must be taken that the requirements are the same in both cases,
|
266
|
+
or just always install from wheel.
|
267
|
+
- drop dirspec requirement on win32
|
268
|
+
- improved command line utility, adds 'wheel convert [egg or wininst]' to
|
269
|
+
convert legacy binary formats to wheel
|
270
|
+
|
271
|
+
0.9.5
|
272
|
+
=====
|
273
|
+
- Wheel's own wheel file can be executed by Python, and can install itself:
|
274
|
+
``python wheel-0.9.5-py27-none-any/wheel install ...``
|
275
|
+
- Use argparse; basic ``wheel install`` command should run with only stdlib
|
276
|
+
dependencies.
|
277
|
+
- Allow requires_dist in setup.cfg's [metadata] section. In addition to
|
278
|
+
dependencies in setup.py, but will only be interpreted when installing
|
279
|
+
from wheel, not from sdist. Can be qualified with environment markers.
|
280
|
+
|
281
|
+
0.9.4
|
282
|
+
=====
|
283
|
+
- Fix wheel.signatures in sdist
|
284
|
+
|
285
|
+
0.9.3
|
286
|
+
=====
|
287
|
+
- Integrated digital signatures support without C extensions.
|
288
|
+
- Integrated "wheel install" command (single package, no dependency
|
289
|
+
resolution) including compatibility check.
|
290
|
+
- Support Python 3.3
|
291
|
+
- Use Metadata 1.3 (PEP 426)
|
292
|
+
|
293
|
+
0.9.2
|
294
|
+
=====
|
295
|
+
- Automatic signing if WHEEL_TOOL points to the wheel binary
|
296
|
+
- Even more Python 3 fixes
|
297
|
+
|
298
|
+
0.9.1
|
299
|
+
=====
|
300
|
+
- 'wheel sign' uses the keys generated by 'wheel keygen' (instead of generating
|
301
|
+
a new key at random each time)
|
302
|
+
- Python 2/3 encoding/decoding fixes
|
303
|
+
- Run tests on Python 2.6 (without signature verification)
|
304
|
+
|
305
|
+
0.9
|
306
|
+
===
|
307
|
+
- Updated digital signatures scheme
|
308
|
+
- Python 3 support for digital signatures
|
309
|
+
- Always verify RECORD hashes on extract
|
310
|
+
- "wheel" command line tool to sign, verify, unpack wheel files
|
311
|
+
|
312
|
+
0.8
|
313
|
+
===
|
314
|
+
- none/any draft pep tags update
|
315
|
+
- improved wininst2wheel script
|
316
|
+
- doc changes and other improvements
|
317
|
+
|
318
|
+
0.7
|
319
|
+
===
|
320
|
+
- sort .dist-info at end of wheel archive
|
321
|
+
- Windows & Python 3 fixes from Paul Moore
|
322
|
+
- pep8
|
323
|
+
- scripts to convert wininst & egg to wheel
|
324
|
+
|
325
|
+
0.6
|
326
|
+
===
|
327
|
+
- require distribute >= 0.6.28
|
328
|
+
- stop using verlib
|
329
|
+
|
330
|
+
0.5
|
331
|
+
===
|
332
|
+
- working pretty well
|
333
|
+
|
334
|
+
0.4.2
|
335
|
+
=====
|
336
|
+
- hyphenated name fix
|
337
|
+
|
338
|
+
0.4
|
339
|
+
===
|
340
|
+
- improve test coverage
|
341
|
+
- improve Windows compatibility
|
342
|
+
- include tox.ini courtesy of Marc Abramowitz
|
343
|
+
- draft hmac sha-256 signing function
|
344
|
+
|
345
|
+
0.3
|
346
|
+
===
|
347
|
+
- prototype egg2wheel conversion script
|
348
|
+
|
349
|
+
0.2
|
350
|
+
===
|
351
|
+
- Python 3 compatibility
|
352
|
+
|
353
|
+
0.1
|
354
|
+
===
|
355
|
+
- Initial version
|
356
|
+
|
357
|
+
|