{ "info": { "author": "Marius Gedminas", "author_email": "marius@gedmin.as", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Environment :: Console", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy" ], "description": "check-manifest\n==============\n\n|buildstatus|_ |appveyor|_ |coverage|_\n\nAre you a Python developer? Have you uploaded packages to the Python Package\nIndex? Have you accidentally uploaded *broken* packages with some files\nmissing? If so, check-manifest is for you.\n\nQuick start\n-----------\n\n::\n\n $ pip install check-manifest\n\n $ cd ~/src/mygreatpackage\n $ check-manifest\n\nYou can ask the script to help you update your MANIFEST.in::\n\n $ check-manifest -u -v\n listing source files under version control: 6 files and directories\n building an sdist: check-manifest-0.7.tar.gz: 4 files and directories\n lists of files in version control and sdist do not match!\n missing from sdist:\n tests.py\n tox.ini\n suggested MANIFEST.in rules:\n include *.py\n include tox.ini\n updating MANIFEST.in\n\n $ cat MANIFEST.in\n include *.rst\n\n # added by check_manifest.py\n include *.py\n include tox.ini\n\n\nCommand-line reference\n----------------------\n\n::\n\n $ check-manifest --help\n usage: check-manifest [-h] [--version] [-v] [-c] [-u] [-p PYTHON]\n [--ignore patterns]\n [source_tree]\n\n Check a Python MANIFEST.in file for completeness\n\n positional arguments:\n source_tree location for the source tree (default: .)\n\n optional arguments:\n -h, --help show this help message and exit\n --version show program's version number and exit\n -v, --verbose more verbose output (default: False)\n -c, --create create a MANIFEST.in if missing (default: False)\n -u, --update append suggestions to MANIFEST.in (implies --create)\n (default: False)\n -p PYTHON, --python PYTHON\n use this Python interpreter for running setup.py sdist\n (default: /home/mg/.venv/bin/python)\n --ignore patterns ignore files/directories matching these comma-\n separated patterns (default: None)\n --ignore-bad-ideas patterns\n ignore bad idea files/directories matching these\n comma-separated patterns (default: [])\n\n\nConfiguration\n-------------\n\nYou can configure check-manifest to ignore certain file patterns using\na ``[tool.check-manifest]`` section in your ``pyproject.toml`` file or\na ``[check-manifest]`` section in either ``setup.cfg`` or\n``tox.ini``. Examples::\n\n # pyproject.toml\n [tool.check-manifest]\n ignore = [\".travis.yml\"]\n\n # setup.cfg or tox.ini\n [check-manifest]\n ignore =\n .travis.yml\n\nNote that lists are newline separated in the ``setup.cfg`` and\n``tox.ini`` files.\n\nThe following options are recognized:\n\nignore\n A list of filename patterns that will be ignored by check-manifest.\n Use this if you want to keep files in your version control system\n that shouldn't be included in your source distributions. The\n default ignore list is ::\n\n PKG-INFO\n *.egg-info\n *.egg-info/*\n setup.cfg\n .hgtags\n .hgsigs\n .hgignore\n .gitignore\n .bzrignore\n .gitattributes\n .github/*\n .travis.yml\n Jenkinsfile\n *.mo\n\nignore-default-rules\n If set to ``true``, your ``ignore`` patterns will replace the default\n ignore list instead of adding to it.\n\nignore-bad-ideas\n A list of filename patterns that will be ignored by\n check-manifest's generated files check. Use this if you want to\n keep generated files in your version control system, even though\n it is generally a bad idea.\n\n\nVersion control integration\n---------------------------\n\nWith `pre-commit `_, check-manifest can be part of your\ngit-workflow. Add the following to your ``.pre-commit-config.yaml``.\n\n.. code-block:: yaml\n\n repos:\n - repo: https://github.com/mgedmin/check-manifest\n rev: \"0.39\"\n hooks:\n - id: check-manifest\n\n\n.. |buildstatus| image:: https://api.travis-ci.org/mgedmin/check-manifest.svg?branch=master\n.. _buildstatus: https://travis-ci.org/mgedmin/check-manifest\n\n.. |appveyor| image:: https://ci.appveyor.com/api/projects/status/github/mgedmin/check-manifest?branch=master&svg=true\n.. _appveyor: https://ci.appveyor.com/project/mgedmin/check-manifest\n\n.. |coverage| image:: https://coveralls.io/repos/mgedmin/check-manifest/badge.svg?branch=master\n.. _coverage: https://coveralls.io/r/mgedmin/check-manifest\n\n\nChangelog\n=========\n\n\n0.40 (2019-10-15)\n-----------------\n\n- Add Python 3.8 support.\n\n\n0.39 (2019-06-06)\n-----------------\n\n- You can now use check-manifest as a `pre-commit `_\n hook (`#100 `__).\n\n\n0.38 (2019-04-23)\n-----------------\n\n- Add Python 3.7 support.\n\n- Drop Python 3.4 support.\n\n- Added GitHub templates to default ignore patterns.\n\n- Added reading check-manifest config out of ``tox.ini`` or ``pyproject.toml``.\n\n\n0.37 (2018-04-12)\n-----------------\n\n- Drop Python 3.3 support.\n\n- Support packages using ``setuptools_scm``\n (`#68 `__).\n\n Note that ``setuptools_scm`` usually makes MANIFEST.in files obsolete.\n Having one is helpful only if you intend to build an sdist and then use that\n sdist to perform further builds, instead of building from a source checkout.\n\n\n0.36 (2017-11-21)\n-----------------\n\n- Handle empty VCS repositories more gracefully\n (`#84 `__).\n\n\n0.35 (2017-01-30)\n-----------------\n\n- Python 3.6 support.\n\n\n0.34 (2016-09-14)\n-----------------\n\n- Fix WindowsError due to presence of read-only files\n (`#74 `__).\n\n\n0.33 (2016-08-29)\n-----------------\n\n- Fix WindowsError due to git submodules in subdirectories\n (`#73 `__).\n Contributed by Loren Gordon.\n\n\n0.32 (2016-08-16)\n-----------------\n\n* New config/command line option to ignore bad ideas (ignore-bad-ideas)\n (`issue #67 `__).\n Contributed by Brecht Machiels.\n\n* Files named ``.hgsigs`` are ignored by default. Contributed by Jakub Wilk.\n\n\n0.31 (2016-01-28)\n-----------------\n\n- Drop Python 3.2 support.\n\n- Ignore commented-out lines in MANIFEST.in\n (`issue #66 `__).\n\n\n0.30 (2015-12-10)\n-----------------\n\n* Support git submodules\n (`issue #61 `__).\n\n* Revert the zc.buildout support hack from 0.26 because it causes breakage\n (`issue #56 `__).\n\n* Improve non-ASCII filename handling with Bazaar on Windows.\n\n\n0.29 (2015-11-21)\n-----------------\n\n* Fix --python with just a command name, to be found in path (`issue #57\n `__).\n\n\n0.28 (2015-11-11)\n-----------------\n\n* Fix detection of git repositories when .git is a file and not a directory (`#53\n `__). One situation\n where this occurs is when the project is checked out as a git submodule.\n\n* Apply ignore patterns in subdirectories too (`#54\n `__).\n\n\n0.27 (2015-11-02)\n-----------------\n\n* Fix utter breakage on Windows, introduced in 0.26 (`issue #52\n `__).\n (The bug -- clearing the environment unnecessarily -- could probably\n also cause locale-related problems on other OSes.)\n\n\n0.26 (2015-10-30)\n-----------------\n\n* Do not complain about missing ``.gitattributes`` file (`PR #50\n `__).\n\n* Normalize unicode representation and case of filenames. (`issue #47\n `__).\n\n* Support installation via zc.buildout better (`issue #35\n `__).\n\n* Drop Python 2.6 support because one of our test dependencies (mock) dropped\n it. This also means we no longer use environment markers.\n\n\n0.25 (2015-05-27)\n-----------------\n\n* Stop dynamic computation of install_requires in setup.py: this doesn't work\n well in the presence of the pip 7 wheel cache. Use PEP-426 environment\n markers instead (this means we now require setuptools >= 0.7, and pip >= 6.0,\n and wheel >= 0.24).\n\n\n0.24 (2015-03-26)\n-----------------\n\n* Make sure ``setup.py`` not being added to the VCS doesn't cause\n hard-to-understand errors (`issue #46\n `__).\n\n\n0.23 (2015-02-12)\n-----------------\n\n* More reliable svn status parsing; now handles svn externals (`issue #45\n `__).\n\n* The test suite now skips tests for version control systems that aren't\n installed (`issue #42\n `__).\n\n\n0.22 (2014-12-23)\n-----------------\n\n* More terse output by default; use the new ``-v`` (``--verbose``) flag\n to see all the details.\n\n* Warn the user if MANIFEST.in is missing (`issue #31\n `__).\n\n* Fix IOError when files listed under version control are missing (`issue #32\n `__).\n\n* Improved wording of the match/do not match messages (`issue #34\n `__).\n\n* Handle a relative --python path (`issue #36\n `__).\n\n* Warn about leading and trailing slashes in MANIFEST.in (`issue #37\n `__).\n\n* Ignore .travis.yml by default (`issue #39\n `__).\n\n* Suggest a rule for Makefile found deeper in the source tree.\n\n\n0.21 (2014-06-13)\n-----------------\n\n* Don't drop setup.cfg when copying version-controlled files into a clean\n temporary directory (`issue #29\n `__).\n\n\n0.20 (2014-05-14)\n-----------------\n\n* Restore warning about files included in the sdist but not added to the\n version control system (`issue #27\n `__).\n\n* Fix ``check-manifest relative/pathname`` (`issue #28\n `__).\n\n\n0.19 (2014-02-09)\n-----------------\n\n* More correct MANIFEST.in parsing for exclusion rules.\n* Some effort was expended towards Windows compatibility.\n* Handles non-ASCII filenames, as long as they're valid in your locale\n (`issue #23 `__,\n `#25 `__).\n\n\n0.18 (2014-01-30)\n-----------------\n\n* Friendlier error message when an external command cannot be found\n (`issue #21 `__).\n* Add suggestion pattern for `.coveragerc`.\n* Python 2.6 support\n (`issue #22 `__).\n\n\n0.17 (2013-10-10)\n-----------------\n\n* Read the existing MANIFEST.in file for files to ignore\n (`issue #19 `__).\n\n\n0.16 (2013-10-01)\n-----------------\n\n* Fix Subversion status parsing in the presence of svn usernames longer than 12\n characters (`issue #18 `__).\n\n\n0.15 (2013-09-20)\n-----------------\n\n* Normalize the paths of all files, avoiding some duplicate misses of\n directories. (`issue #16 `__).\n [maurits]\n\n\n0.14 (2013-08-28)\n-----------------\n\n* Supports packages that do not live in the root of a version control\n repository (`issue #15 `__).\n\n* More reliable svn support: detect files that have been added but not\n committed (or committed but not updated).\n\n* Licence changed from GPL (v2 or later) to MIT\n (`issue #12 `__).\n\n\n0.13 (2013-07-31)\n-----------------\n\n* New command line option: --ignore\n (`issue #11 `__).\n Contributed by Steven Myint.\n\n* New command line option: -p, --python. Defaults to the Python you used to\n run check-manifest. Fixes issues with packages that require Python 3 to run\n setup.py (`issue #13 `__).\n\n\n0.12 (2013-05-15)\n-----------------\n\n* Add suggestion pattern for `Makefile`.\n\n* More generic suggestion patterns, should cover almost anything.\n\n* zest.releaser_ integration: skip check-release for non-Python packages\n (`issue #9 `__).\n\n\n0.11 (2013-03-20)\n-----------------\n\n* Make sure ``MANIFEST.in`` is not ignored even if it hasn't been added to the\n VCS yet (`issue #7 `__).\n\n\n0.10 (2013-03-17)\n-----------------\n\n* ``check-manifest --version`` now prints the version number.\n\n* Don't apologize for not adding rules for directories (especially after adding\n rules that include files inside that directory).\n\n* Python 3 support contributed by Steven Myint.\n\n* Default ignore patterns can be configured in ``setup.cfg``\n (`issue #3 `_).\n\n\n0.9 (2013-03-06)\n----------------\n\n* Add suggestion pattern for `.travis.yml`.\n\n* When check-manifest -u (or -c) doesn't know how to write a rule matching a\n particular file, it now apologizes explicitly.\n\n* Copy the source tree to a temporary directory before running python setup.py\n sdist to avoid side effects from setuptools plugins or stale\n \\*.egg-info/SOURCES.txt files\n (`issue #1 `_).\n\n* Warn if `*.egg-info` or `*.mo` is actually checked into the VCS.\n\n* Don't complain if `*.mo` files are present in the sdist but not in the VCS\n (`issue #2 `_).\n\n\n0.8 (2013-03-06)\n----------------\n\n* Entry point for zest.releaser_. If you install both zest.releaser and\n check-manifest, you will be asked if you want to check your manifest during\n ``fullrelease``.\n\n.. _zest.releaser: https://pypi.python.org/pypi/zest.releaser\n\n\n0.7 (2013-03-05)\n----------------\n\n* First release available from the Python Package Index.\n\n* Moved from https://gist.github.com/4277075\n to https://github.com/mgedmin/check-manifest\n\n* Added README.rst, CHANGES.rst, setup.py, tox.ini (but no real tests yet),\n MANIFEST.in, and a Makefile.\n\n* Fixed a bug in error reporting (when setup.py failed, the user would get\n `TypeError: descriptor '__init__' requires an 'exceptions.Exception' object\n but received a 'str'`).\n\n\n", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://github.com/mgedmin/check-manifest", "keywords": "distutils,setuptools,packaging,manifest,checker,linter", "license": "MIT", "maintainer": "", "maintainer_email": "", "name": "check-manifest", "package_url": "https://pypi.org/project/check-manifest/", "platform": "", "project_url": "https://pypi.org/project/check-manifest/", "project_urls": { "Homepage": "https://github.com/mgedmin/check-manifest" }, "release_url": "https://pypi.org/project/check-manifest/0.40/", "requires_dist": [ "toml", "mock ; extra == 'test'" ], "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "summary": "Check MANIFEST.in in a Python source package for completeness", "version": "0.40" }, "last_serial": 5975215, "releases": { "0.10": [ { "comment_text": "", "digests": { "md5": "498ec021eb4d39f7450cc1cec39b47bb", "sha256": "1a3500180605a6244da624f98b42185e1f190d195ccebe1ad7351ebeee98aaeb" }, "downloads": -1, "filename": "check-manifest-0.10.tar.gz", "has_sig": false, "md5_digest": "498ec021eb4d39f7450cc1cec39b47bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10487, "upload_time": "2013-03-17T11:30:13", "url": "https://files.pythonhosted.org/packages/d2/5d/064a51045b6b732a5525473190017aede8613624f0b8ec0259630c0174a7/check-manifest-0.10.tar.gz" } ], "0.11": [ { "comment_text": "", "digests": { "md5": "05cf6c80368a914666a2aabb9b83e86d", "sha256": "50fca7f17fc50ae48eac8fa735fead8277922ad4507b4cb744c4f5a6c367bf77" }, "downloads": -1, "filename": "check-manifest-0.11.tar.gz", "has_sig": false, "md5_digest": "05cf6c80368a914666a2aabb9b83e86d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 10655, "upload_time": "2013-03-20T06:34:35", "url": "https://files.pythonhosted.org/packages/08/78/168a3da4e39aec229ec4dd3d922b1b47cc7db8745b71116ba5256ecdada8/check-manifest-0.11.tar.gz" } ], "0.12": [ { "comment_text": "", "digests": { "md5": "bfba06c1a00b2aa995518c7310a9bed2", "sha256": "9443a361ab37e0eee8187cf43376cc9bee013ae23571951bd83c84ce4249d2c4" }, "downloads": -1, "filename": "check-manifest-0.12.tar.gz", "has_sig": false, "md5_digest": "bfba06c1a00b2aa995518c7310a9bed2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11554, "upload_time": "2013-05-15T19:46:58", "url": "https://files.pythonhosted.org/packages/f1/6e/6ea3c499e6363674b5c01008ced406ccb9e279dff6a8c7a605f43f92ed10/check-manifest-0.12.tar.gz" } ], "0.13": [ { "comment_text": "", "digests": { "md5": "9c655a755e95c9eb8c02f8a2a4f239b9", "sha256": "bcc48d99c91e80cc224873d54a90d425375d9c8f60e6e8078a5e3b497fe6d88e" }, "downloads": -1, "filename": "check-manifest-0.13.tar.gz", "has_sig": false, "md5_digest": "9c655a755e95c9eb8c02f8a2a4f239b9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 11916, "upload_time": "2013-07-31T11:08:49", "url": "https://files.pythonhosted.org/packages/70/66/6c9502cb5232b95499439eb073a54bfc2fb53ec81b833e95b3770d0d69ff/check-manifest-0.13.tar.gz" } ], "0.14": [ { "comment_text": "", "digests": { "md5": "73c97245fdae2c2694d1db67e4f77aee", "sha256": "de0916f018c910c5445fa15e37c2815d0f29758851c88dd71fa45b71b57b7755" }, "downloads": -1, "filename": "check-manifest-0.14.tar.gz", "has_sig": false, "md5_digest": "73c97245fdae2c2694d1db67e4f77aee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13706, "upload_time": "2013-08-29T06:24:12", "url": "https://files.pythonhosted.org/packages/1e/ee/78e1e3b158d0562084b25bd45639728cdedc00e8c74282d213bdff3c4c35/check-manifest-0.14.tar.gz" } ], "0.15": [ { "comment_text": "", "digests": { "md5": "6e068de48a1a9eb842e9238ece849723", "sha256": "834f47d2a2377f9b461b7304d8f157e90006e0f3aaef8d95f4de06e519e8e973" }, "downloads": -1, "filename": "check-manifest-0.15.tar.gz", "has_sig": false, "md5_digest": "6e068de48a1a9eb842e9238ece849723", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13837, "upload_time": "2013-09-20T13:09:46", "url": "https://files.pythonhosted.org/packages/b3/60/24ee7dbea72df69eb0d15f78b95f99e09ade6623eccce0cb74b718cc0d4b/check-manifest-0.15.tar.gz" } ], "0.16": [ { "comment_text": "", "digests": { "md5": "8c7691c2ed0c1b39aa11761248d2cbe7", "sha256": "128bc2682343683c05792785ffb03af857ebab97452d422d3726c59fa8f1daa9" }, "downloads": -1, "filename": "check-manifest-0.16.tar.gz", "has_sig": false, "md5_digest": "8c7691c2ed0c1b39aa11761248d2cbe7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 13948, "upload_time": "2013-10-01T11:20:46", "url": "https://files.pythonhosted.org/packages/b5/4b/aa7b003cf5819b54e8bd203924bfca2903e32828f6cbba8608ece7528bfa/check-manifest-0.16.tar.gz" } ], "0.17": [ { "comment_text": "", "digests": { "md5": "0672bc6c92c981995b9c3881afcac3c7", "sha256": "cf50974ff23490d410466ead6d8c3b2526300cce749f695e0394883fc2bdc8c9" }, "downloads": -1, "filename": "check-manifest-0.17.tar.gz", "has_sig": false, "md5_digest": "0672bc6c92c981995b9c3881afcac3c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 16079, "upload_time": "2013-10-10T14:43:15", "url": "https://files.pythonhosted.org/packages/92/47/e67d9a006ff537ba68284431544429eb56d9c92d129be3fa677bfb00a48c/check-manifest-0.17.tar.gz" } ], "0.18": [ { "comment_text": "", "digests": { "md5": "200a0b589720b7d1d8a447964737cdef", "sha256": "f4f544a0771e5461e4f026f221e0bd65b19e9682d63c03951e69182fb74347e9" }, "downloads": -1, "filename": "check_manifest-0.18-py27-none-any.whl", "has_sig": false, "md5_digest": "200a0b589720b7d1d8a447964737cdef", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15307, "upload_time": "2014-01-30T09:43:00", "url": "https://files.pythonhosted.org/packages/81/77/2c8c516b82c9defbd0438f382e07f640fc5813df2b530e8b5185b00ee800/check_manifest-0.18-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "208a0e9091c5a6c61e47f9d7b4a27aa3", "sha256": "cdde57349bd5d229f30dd167ea7526d6be3514720f5a8fa12c5b0d0cbcbbfef0" }, "downloads": -1, "filename": "check-manifest-0.18.tar.gz", "has_sig": false, "md5_digest": "208a0e9091c5a6c61e47f9d7b4a27aa3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 17753, "upload_time": "2014-01-30T09:42:27", "url": "https://files.pythonhosted.org/packages/74/24/a6bdd5162c58cc6714100a29b432e4a06ee9c5ba2d83c70ba4949ccf9d95/check-manifest-0.18.tar.gz" } ], "0.19": [ { "comment_text": "", "digests": { "md5": "00455bdcae822f7de939d06b600dcb53", "sha256": "ad40867c9304025aebcb8bbc28e38525c49d942a2ebffb528bd1119ba34b8b22" }, "downloads": -1, "filename": "check_manifest-0.19-py27-none-any.whl", "has_sig": false, "md5_digest": "00455bdcae822f7de939d06b600dcb53", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15967, "upload_time": "2014-02-09T10:24:31", "url": "https://files.pythonhosted.org/packages/eb/1b/879accd21cd0ecc46086811306531b671fe9efe8bad802eb2524f556cc91/check_manifest-0.19-py27-none-any.whl" }, { "comment_text": "", "digests": { "md5": "ff9c8580714098088154dcac09041be8", "sha256": "0eeee5f1da54dd64df9ab8f4e056a4be11fb7d6a58853f39e840220f74d55bd4" }, "downloads": -1, "filename": "check-manifest-0.19.tar.gz", "has_sig": false, "md5_digest": "ff9c8580714098088154dcac09041be8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21290, "upload_time": "2014-02-09T10:24:21", "url": "https://files.pythonhosted.org/packages/91/ab/1a8d49fa4a1273f6d4dd4fce752223438bc217dd9f628361216cb78d7919/check-manifest-0.19.tar.gz" } ], "0.20": [ { "comment_text": "", "digests": { "md5": "16febc2562a0e35e28e1391439e1af06", "sha256": "b90249dbc4dbb4f7f5c954d6ff23869c5fa4ed3ba901b7c705267c042ec1ceb6" }, "downloads": -1, "filename": "check_manifest-0.20-py2-none-any.whl", "has_sig": false, "md5_digest": "16febc2562a0e35e28e1391439e1af06", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 15671, "upload_time": "2014-05-14T16:54:10", "url": "https://files.pythonhosted.org/packages/31/3d/8b549fda99cf1f2dcc4fd8015af13491423591e130e95ad62a0c6b57d309/check_manifest-0.20-py2-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e50b8fe0cf758bcd11250f135fa9a036", "sha256": "9f1735393a09735f621876ef2f83f1b9022c17bd9f6e4b68afc241638909da97" }, "downloads": -1, "filename": "check-manifest-0.20.tar.gz", "has_sig": false, "md5_digest": "e50b8fe0cf758bcd11250f135fa9a036", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21511, "upload_time": "2014-05-14T16:52:56", "url": "https://files.pythonhosted.org/packages/84/45/b91566bd5728624d7bcfb8ae32a456a91f7eb3f2075f351db4c53d713947/check-manifest-0.20.tar.gz" } ], "0.21": [ { "comment_text": "", "digests": { "md5": "d8290415e9178a4d812b73fb2e45a7d1", "sha256": "4d5f83b2f7829d3580380cbeeda69d81973335b58539a18a3769d69a2725225c" }, "downloads": -1, "filename": "check-manifest-0.21.tar.gz", "has_sig": false, "md5_digest": "d8290415e9178a4d812b73fb2e45a7d1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 21596, "upload_time": "2014-06-13T20:04:50", "url": "https://files.pythonhosted.org/packages/7d/d0/41f135a6a9b4486e0ce777ad2946d31d549f0a6215fab4973b0220515ec5/check-manifest-0.21.tar.gz" } ], "0.22": [ { "comment_text": "", "digests": { "md5": "435afd37593620b44e3eb74e3b047d68", "sha256": "6b2fdbd0bfbdb403b18414c592e419506d92603d616c49e3d6a06845a124e7de" }, "downloads": -1, "filename": "check-manifest-0.22.tar.gz", "has_sig": false, "md5_digest": "435afd37593620b44e3eb74e3b047d68", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 22521, "upload_time": "2014-12-23T07:48:47", "url": "https://files.pythonhosted.org/packages/30/e0/66841cb09fd19245616ec717ad2d31e6ac4889b166d7240ee5d6e427d9fa/check-manifest-0.22.tar.gz" } ], "0.23": [ { "comment_text": "", "digests": { "md5": "2603b5d146c3b62b989f6c182192501b", "sha256": "38f6fed1ed723dfc4f872448364feccfc3e9ddf2970db4f6063fa98a3434829c" }, "downloads": -1, "filename": "check-manifest-0.23.tar.gz", "has_sig": false, "md5_digest": "2603b5d146c3b62b989f6c182192501b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24316, "upload_time": "2015-02-12T16:19:51", "url": "https://files.pythonhosted.org/packages/7d/dd/470bd287ef57c64ad9ddd3292dd61323e3f26fa190b76f1de96daf407a09/check-manifest-0.23.tar.gz" } ], "0.24": [ { "comment_text": "", "digests": { "md5": "f9ab4c7d8a0f38b7cba2731ed1117cd4", "sha256": "c85d2a3a037a38534b1fbca5fb7a5bccb2845a6cc2d9e494b31e13e5f698ec61" }, "downloads": -1, "filename": "check-manifest-0.24.tar.gz", "has_sig": false, "md5_digest": "f9ab4c7d8a0f38b7cba2731ed1117cd4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24482, "upload_time": "2015-03-26T17:42:26", "url": "https://files.pythonhosted.org/packages/d5/3e/dbc66498be6e885b5aa2e33dbd466395febcca1f4385692ac761867afcd7/check-manifest-0.24.tar.gz" } ], "0.25": [ { "comment_text": "", "digests": { "md5": "089ee3d4eaadb9f921d265a46b3c15f6", "sha256": "d08c6b8a9f2d1e5e7c070772aac787e2c1225184d27610d601334c0262bcd60c" }, "downloads": -1, "filename": "check_manifest-0.25-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "089ee3d4eaadb9f921d265a46b3c15f6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18138, "upload_time": "2015-05-27T06:48:17", "url": "https://files.pythonhosted.org/packages/6a/95/484d0e08a969adc673d32f8063f480c0146a880a9afa266e177303f87247/check_manifest-0.25-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "119cd42625ee78f9377abeeecd1c95c8", "sha256": "b6ce4b65249d4ab5b5a3120af63b6e30e9fac849009e1ef8c5faedc30abf616a" }, "downloads": -1, "filename": "check-manifest-0.25.tar.gz", "has_sig": false, "md5_digest": "119cd42625ee78f9377abeeecd1c95c8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 24931, "upload_time": "2015-05-27T06:48:21", "url": "https://files.pythonhosted.org/packages/20/f4/8e51b3290a58ca22e2559c591e6881c2514f86aa127a799b41f6c063c5e5/check-manifest-0.25.tar.gz" } ], "0.26": [ { "comment_text": "", "digests": { "md5": "d875a1b2eb98b8639492d38a9d35e371", "sha256": "5593fa180c13af09d10232d01c876e42de888826192af37065384482d943599c" }, "downloads": -1, "filename": "check_manifest-0.26-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d875a1b2eb98b8639492d38a9d35e371", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18576, "upload_time": "2015-10-30T17:22:36", "url": "https://files.pythonhosted.org/packages/d4/5f/a2bbf57eb2871e5c1527a296dd01869eb7c6b99b958e419851630a33521b/check_manifest-0.26-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "a7bcc120c7ca8f5c07d507647ff8a415", "sha256": "956d5698003297a34b9888bf25907b565e458186f396a4bd4c11d383b5bad299" }, "downloads": -1, "filename": "check-manifest-0.26.tar.gz", "has_sig": false, "md5_digest": "a7bcc120c7ca8f5c07d507647ff8a415", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25439, "upload_time": "2015-10-30T17:22:53", "url": "https://files.pythonhosted.org/packages/02/ad/27fd8cc351a76d8cf17ee68210613dec44c7d5121c3f5853254d8931cd60/check-manifest-0.26.tar.gz" } ], "0.27": [ { "comment_text": "", "digests": { "md5": "3c7283462ebb69dc61ad80dc32f6d458", "sha256": "03e36fce42c128b21968ccc8cc528bd233a46112a3dc44681cd4819bdb29323e" }, "downloads": -1, "filename": "check_manifest-0.27-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3c7283462ebb69dc61ad80dc32f6d458", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 18862, "upload_time": "2015-11-02T08:46:00", "url": "https://files.pythonhosted.org/packages/eb/42/5ab6d4b34359ead18007084be511ed12e4182eb540e6943ae92e606c89fb/check_manifest-0.27-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "eda35c4c1eebdd1f4fb5f14350585cb9", "sha256": "7195e7f4cb6007d6b3f2fe208fa11445c028814316968c76dde929b0b1e8633c" }, "downloads": -1, "filename": "check-manifest-0.27.tar.gz", "has_sig": false, "md5_digest": "eda35c4c1eebdd1f4fb5f14350585cb9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25637, "upload_time": "2015-11-02T08:46:13", "url": "https://files.pythonhosted.org/packages/5e/37/2fac3b0ccceff7ebe5278ff4627619437cf8aa0e9b94960789e5f6b45268/check-manifest-0.27.tar.gz" } ], "0.28": [ { "comment_text": "", "digests": { "md5": "ecd4606ffb6b52e13b878af8fa7b2efe", "sha256": "1a5992c63cffd875a793c396fd37f912813543cf317f28dc0f14223051ba057c" }, "downloads": -1, "filename": "check_manifest-0.28-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ecd4606ffb6b52e13b878af8fa7b2efe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19030, "upload_time": "2015-11-11T13:07:16", "url": "https://files.pythonhosted.org/packages/f3/24/f7355b318c94e0bb0b70ab897481cfd9d625d82ffceca282c390e5d88d0f/check_manifest-0.28-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "fe5a84caee2bfc09378eb14401f0cc3f", "sha256": "34abe31f9adb6b61a6c46eb6d64ce734e6a08b18a8212ebfdcf4928aa77d475b" }, "downloads": -1, "filename": "check-manifest-0.28.tar.gz", "has_sig": false, "md5_digest": "fe5a84caee2bfc09378eb14401f0cc3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 25817, "upload_time": "2015-11-11T13:07:21", "url": "https://files.pythonhosted.org/packages/45/69/d3004af8932ed707b0587c7730a7d3c50e519d259f358fbcfa5e2dba8e9a/check-manifest-0.28.tar.gz" } ], "0.29": [ { "comment_text": "", "digests": { "md5": "de59727cc33185fbc35bae44bbc71e37", "sha256": "60ec382a41cb83d284dd51460c57db4026a2fdd9ce4e2d8d83b862e2275af7a8" }, "downloads": -1, "filename": "check_manifest-0.29-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "de59727cc33185fbc35bae44bbc71e37", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 19264, "upload_time": "2015-11-21T09:29:38", "url": "https://files.pythonhosted.org/packages/49/33/09423b511d42db8fa0a3a8c67bd8b490d9550a4004fe0bbc0967978efeee/check_manifest-0.29-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "20f3348cc18114ef1fd9a7dc88035c35", "sha256": "0b7fbdcbc6311728b0dd24d07c9aff83c62394698b43c3bb59bd7af9880b7676" }, "downloads": -1, "filename": "check-manifest-0.29.tar.gz", "has_sig": false, "md5_digest": "20f3348cc18114ef1fd9a7dc88035c35", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 26041, "upload_time": "2015-11-21T09:29:44", "url": "https://files.pythonhosted.org/packages/f9/5a/d3ec09d631dbf5e53f11069b4617fb1cc311d943a6137b7207815c20f163/check-manifest-0.29.tar.gz" } ], "0.30": [ { "comment_text": "", "digests": { "md5": "ff12a9f97b3d9c91a440152b2ccc68e2", "sha256": "c931551369d4a1246c09bf7f102a56c338304f3543ae4cf4815dcead584cb13b" }, "downloads": -1, "filename": "check_manifest-0.30-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ff12a9f97b3d9c91a440152b2ccc68e2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20021, "upload_time": "2015-12-10T07:31:30", "url": "https://files.pythonhosted.org/packages/2e/bd/41bc5cff9e32d370ce14660896fb0006fc7e2e7bfdf33cdace4fa0f5bf6c/check_manifest-0.30-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b18f7f0bcd02f52d40148c388ace9290", "sha256": "b19fd0d8b9286532ba3dc0282484fd76d11200cf24b340dc3d08f293c7dd0500" }, "downloads": -1, "filename": "check-manifest-0.30.tar.gz", "has_sig": false, "md5_digest": "b18f7f0bcd02f52d40148c388ace9290", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 27237, "upload_time": "2015-12-10T07:31:36", "url": "https://files.pythonhosted.org/packages/8c/18/9f4636acfd4cf49339e37bce3dae22f423963bd7d407b0061e6346bdf8b3/check-manifest-0.30.tar.gz" } ], "0.31": [ { "comment_text": "", "digests": { "md5": "21a559f39a3f8729b8d74e2a1dee0bf9", "sha256": "18a89adc98fcaf2eef77bb7c1fa09b0bebc48c23e37b343faa831b188ecb5a26" }, "downloads": -1, "filename": "check_manifest-0.31-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "21a559f39a3f8729b8d74e2a1dee0bf9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 20604, "upload_time": "2016-01-28T18:05:23", "url": "https://files.pythonhosted.org/packages/06/1a/13aeabf9c1111f315e59d5a2f93c8a4c074e1be9279e53553daef5da0031/check_manifest-0.31-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "da1f6dc2cb5f34a579e39fcf57693054", "sha256": "92851191190f7e4e4af77f65bb864f09e9683604bbaa22b85eaed3d1ab6159f4" }, "downloads": -1, "filename": "check-manifest-0.31.tar.gz", "has_sig": false, "md5_digest": "da1f6dc2cb5f34a579e39fcf57693054", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28024, "upload_time": "2016-01-28T18:05:30", "url": "https://files.pythonhosted.org/packages/5f/6b/3813f1b95784cc97a65c02d13a988b1fa23ab22baa87db499ec663bfabe2/check-manifest-0.31.tar.gz" } ], "0.32": [ { "comment_text": "", "digests": { "md5": "8aa62d7ecfad20ac586929e5fd0a9c90", "sha256": "26816c20a8e537f328c169f863e4ac11ff18f0631bf567a137281d5db2476c55" }, "downloads": -1, "filename": "check_manifest-0.32-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8aa62d7ecfad20ac586929e5fd0a9c90", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21124, "upload_time": "2016-08-16T05:51:03", "url": "https://files.pythonhosted.org/packages/06/f7/67cd600e84b0e6ed5f746ddd1c98a12e1fd0036f806be05018d7a7f6ad7d/check_manifest-0.32-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d93b8449231a6f576c9da1f0c55342d8", "sha256": "0a5e80464418604e47d4beecf6ba78eb0595969591b66c24fca5d5891379ee3c" }, "downloads": -1, "filename": "check-manifest-0.32.tar.gz", "has_sig": false, "md5_digest": "d93b8449231a6f576c9da1f0c55342d8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28656, "upload_time": "2016-08-16T05:51:07", "url": "https://files.pythonhosted.org/packages/40/3d/837837841d0be1e35cdf42ed3f00319638d8974f84f8ef39051015ce96c8/check-manifest-0.32.tar.gz" } ], "0.33": [ { "comment_text": "", "digests": { "md5": "ca4ccdf8026b45f39d6c3ba870c843ad", "sha256": "031bff50db636bf62ac465bad63a557a13d4676fbaf72c4bff80c73ba80526d1" }, "downloads": -1, "filename": "check_manifest-0.33-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ca4ccdf8026b45f39d6c3ba870c843ad", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21237, "upload_time": "2016-08-29T13:09:36", "url": "https://files.pythonhosted.org/packages/d5/ac/8b70f9898e260ab49287f76069869f96ac7bc68f8c66a6654a047b439900/check_manifest-0.33-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "14d58da260ad097eeb84e5527afe1041", "sha256": "073132f68443ba9872c45d2041a95a7d10c5dc3a289c2c8e9ca6c7a6367991cd" }, "downloads": -1, "filename": "check-manifest-0.33.tar.gz", "has_sig": false, "md5_digest": "14d58da260ad097eeb84e5527afe1041", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 28764, "upload_time": "2016-08-29T13:09:39", "url": "https://files.pythonhosted.org/packages/e6/08/612163a790cd99e68db7a17823ddedeb8273ea26cc2a0aff40cc0b5869fa/check-manifest-0.33.tar.gz" } ], "0.34": [ { "comment_text": "", "digests": { "md5": "58c8d14da4a002f3479dc138f7a2134d", "sha256": "edb2adb62088f3249d28bf1b836e5cf3ba8e3cc8637dd3c19e237dcc697d2039" }, "downloads": -1, "filename": "check_manifest-0.34-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "58c8d14da4a002f3479dc138f7a2134d", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21504, "upload_time": "2016-09-14T06:19:40", "url": "https://files.pythonhosted.org/packages/3c/af/feefa19ab2bf616becc850898f3f4414110969174f0d4abe58141f197cf5/check_manifest-0.34-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f264199d8119ea3918132489083d0c37", "sha256": "5209b2c5b2850ac32323ca0fa4d5731090d19f70a8b07b6c2c409c3a7f14a2bf" }, "downloads": -1, "filename": "check-manifest-0.34.tar.gz", "has_sig": false, "md5_digest": "f264199d8119ea3918132489083d0c37", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31694, "upload_time": "2016-09-14T06:19:42", "url": "https://files.pythonhosted.org/packages/b4/6d/23c4f7c3354d65e6e4dd722655b3cbc683f220052e90c3fea60af36190c7/check-manifest-0.34.tar.gz" } ], "0.35": [ { "comment_text": "", "digests": { "md5": "31ce8ac297a71118ae22bba7bd27ecfa", "sha256": "778205a97ae7eccfcfb9decb89bd5279515e2bcdaf20a8fac30d15b7365d5b67" }, "downloads": -1, "filename": "check_manifest-0.35-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "31ce8ac297a71118ae22bba7bd27ecfa", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21558, "upload_time": "2017-01-30T10:37:14", "url": "https://files.pythonhosted.org/packages/96/af/960d3c39ce3ae66eb5e3059fdb9aaaeb0a97a9e0c14d14cef152d6c5f8af/check_manifest-0.35-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d07ca4cd6912c54c3371b213a8497981", "sha256": "f9b7a3a6071f1991009bfa760f903b6d31f7b852a35d76a1cbbbcd1b22c9f44a" }, "downloads": -1, "filename": "check-manifest-0.35.tar.gz", "has_sig": false, "md5_digest": "d07ca4cd6912c54c3371b213a8497981", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 31994, "upload_time": "2017-01-30T10:37:15", "url": "https://files.pythonhosted.org/packages/10/f2/7f397f3f7d088b0720dc3e19cf5bde15baa489c9054a0d09793ededd2c07/check-manifest-0.35.tar.gz" } ], "0.36": [ { "comment_text": "", "digests": { "md5": "7adeec78b76635d075e89ca211af4930", "sha256": "c02fff2686a24bc48f625723c9d20d6866045c734300abe3d5564edb652192bc" }, "downloads": -1, "filename": "check_manifest-0.36-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7adeec78b76635d075e89ca211af4930", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 21915, "upload_time": "2017-11-21T12:19:52", "url": "https://files.pythonhosted.org/packages/3c/38/d1f3fa13595b6f929aef435683a345d4669a9c8551e2a6e9819e6c4b6d1f/check_manifest-0.36-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "31e3d0e98749712c52ea963fc1c7afa9", "sha256": "2bb906a736a0f026cc5fd6c0dab5a481793b3d7a7d70106cca6e238da5f52d84" }, "downloads": -1, "filename": "check-manifest-0.36.tar.gz", "has_sig": false, "md5_digest": "31e3d0e98749712c52ea963fc1c7afa9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 32694, "upload_time": "2017-11-21T12:19:54", "url": "https://files.pythonhosted.org/packages/6f/6f/38f3ad250b69a174e8c054572f29450959d4e3cab94645f5b1835ee9af58/check-manifest-0.36.tar.gz" } ], "0.37": [ { "comment_text": "", "digests": { "md5": "4d1269c7f3a3d31c9d3dc08a34a30e17", "sha256": "728edbaccadaa86db0b8f876afac1fb90bce9452234753dfe4ef8fe786dcc2f1" }, "downloads": -1, "filename": "check_manifest-0.37-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4d1269c7f3a3d31c9d3dc08a34a30e17", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 16775, "upload_time": "2018-04-12T13:12:28", "url": "https://files.pythonhosted.org/packages/7a/6a/a723e3a5b2844f47a522013738fea914c9f68d1ef576c97238409bd42e84/check_manifest-0.37-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "3d57bad3b11e0a854772d48fe15781ad", "sha256": "44e3cf4b0833a55460046bf7a3600eaadbcae5e9d13baf0c9d9789dd5c2c6452" }, "downloads": -1, "filename": "check-manifest-0.37.tar.gz", "has_sig": false, "md5_digest": "3d57bad3b11e0a854772d48fe15781ad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 33896, "upload_time": "2018-04-12T13:12:30", "url": "https://files.pythonhosted.org/packages/49/ac/67d065556adcad8144cb51e9d8848006dc3a9f5da7491faaf7db6374e301/check-manifest-0.37.tar.gz" } ], "0.38": [ { "comment_text": "", "digests": { "md5": "fb578dfdac920124842087e61c328048", "sha256": "d3ef229a2629024f082922faa2173ceaf19390b7aa3c63bf0eea000dbee8a6dc" }, "downloads": -1, "filename": "check_manifest-0.38-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fb578dfdac920124842087e61c328048", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 18144, "upload_time": "2019-04-23T09:29:13", "url": "https://files.pythonhosted.org/packages/4a/21/05a65745b4f475a4650d06da716f06b28ff75844ff65e5364cbb6dabf95e/check_manifest-0.38-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8b41ff0661a6c55e126b71e3f247cf4e", "sha256": "dba4749e3874d8f83eb4f0814c9c331fcade6c6325f885deb7b14aa1487fb323" }, "downloads": -1, "filename": "check-manifest-0.38.tar.gz", "has_sig": false, "md5_digest": "8b41ff0661a6c55e126b71e3f247cf4e", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 34779, "upload_time": "2019-04-23T09:29:15", "url": "https://files.pythonhosted.org/packages/3d/c3/99f1dc28ef1b743fd8b53c7fd07bb1502ec658a495b8d2e0f02610d6c2f7/check-manifest-0.38.tar.gz" } ], "0.39": [ { "comment_text": "", "digests": { "md5": "6f040b5a5c334c7bbc8ce76bfce5d095", "sha256": "8754cc8efd7c062a3705b442d1c23ff702d4477b41a269c2e354b25e1f5535a4" }, "downloads": -1, "filename": "check_manifest-0.39-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6f040b5a5c334c7bbc8ce76bfce5d095", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 18309, "upload_time": "2019-06-06T14:55:25", "url": "https://files.pythonhosted.org/packages/28/69/f1c5860ffd151c329bfe8752fa1c187d1199b1409cb6ad947debf99bc8b7/check_manifest-0.39-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c7aa8bcbcf83191dcbb34253b7493918", "sha256": "a4c555f658a7c135b8a22bd26c2e55cfaf5876e4d5962d8c25652f2addd556bc" }, "downloads": -1, "filename": "check-manifest-0.39.tar.gz", "has_sig": false, "md5_digest": "c7aa8bcbcf83191dcbb34253b7493918", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 35372, "upload_time": "2019-06-06T14:55:27", "url": "https://files.pythonhosted.org/packages/7b/a9/1df7b7a07a1c224604cab18e27de9820b640e088c75f28cf7f77cfa17a72/check-manifest-0.39.tar.gz" } ], "0.40": [ { "comment_text": "", "digests": { "md5": "8a51313a867395519c804708bf3e06b8", "sha256": "78dd077f2c70dbac7cfcc9d12cbd423914e787ea4b5631de45aecd25b524e8e3" }, "downloads": -1, "filename": "check_manifest-0.40-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8a51313a867395519c804708bf3e06b8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 18078, "upload_time": "2019-10-15T07:06:58", "url": "https://files.pythonhosted.org/packages/4c/76/247904bbfbfc7077389d97062c97db557da4f3184fc5a22eb0834607ffbf/check_manifest-0.40-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e85bfc8239287963b71d663dd116c404", "sha256": "42de6eaab4ed149e60c9b367ada54f01a3b1e4d6846784f9b9710e770ff5572c" }, "downloads": -1, "filename": "check-manifest-0.40.tar.gz", "has_sig": false, "md5_digest": "e85bfc8239287963b71d663dd116c404", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 34245, "upload_time": "2019-10-15T07:07:00", "url": "https://files.pythonhosted.org/packages/10/2a/71cf4f24856ecef4a86be5b90591fcfb490adef38c424f6e7698af4269bb/check-manifest-0.40.tar.gz" } ], "0.7": [ { "comment_text": "", "digests": { "md5": "87a0fa894f0e2d067fac2169ef2bb91c", "sha256": "8ef59c7c57d74d758f734682902dcd8a747ddd2b5cf0ba8a2f41aa7effc2ef50" }, "downloads": -1, "filename": "check-manifest-0.7.tar.gz", "has_sig": false, "md5_digest": "87a0fa894f0e2d067fac2169ef2bb91c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8065, "upload_time": "2013-03-05T16:45:21", "url": "https://files.pythonhosted.org/packages/2c/f1/5ac6e618d1f4f7e76ae1b730728f7099822700a71046392f967704a8c483/check-manifest-0.7.tar.gz" } ], "0.8": [ { "comment_text": "", "digests": { "md5": "c564c6f84c7328a7fe1fe1c735019e63", "sha256": "38f5856aa1d6c779ce59aa4ef881b87d0ae901f96b3ce80fb7db0d349638bfaa" }, "downloads": -1, "filename": "check-manifest-0.8.tar.gz", "has_sig": false, "md5_digest": "c564c6f84c7328a7fe1fe1c735019e63", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 8430, "upload_time": "2013-03-06T08:14:47", "url": "https://files.pythonhosted.org/packages/cd/00/39f2cb7451a2322a9d2f8ba041ccb92ff99c6c549ed2aa53a3d9ce37c7d8/check-manifest-0.8.tar.gz" } ], "0.9": [ { "comment_text": "", "digests": { "md5": "bd6b3ce0c5339f3426a94874cd137570", "sha256": "26434cdf46d52c6fb45c4409ae102f60ffb182414095bfdeb95c53e54fab42e2" }, "downloads": -1, "filename": "check-manifest-0.9.tar.gz", "has_sig": false, "md5_digest": "bd6b3ce0c5339f3426a94874cd137570", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 9562, "upload_time": "2013-03-06T14:51:21", "url": "https://files.pythonhosted.org/packages/5b/03/609d4e393ab3624f32257981d755ceabb97b533eb5f870cd09d2b2440f98/check-manifest-0.9.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "8a51313a867395519c804708bf3e06b8", "sha256": "78dd077f2c70dbac7cfcc9d12cbd423914e787ea4b5631de45aecd25b524e8e3" }, "downloads": -1, "filename": "check_manifest-0.40-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "8a51313a867395519c804708bf3e06b8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 18078, "upload_time": "2019-10-15T07:06:58", "url": "https://files.pythonhosted.org/packages/4c/76/247904bbfbfc7077389d97062c97db557da4f3184fc5a22eb0834607ffbf/check_manifest-0.40-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e85bfc8239287963b71d663dd116c404", "sha256": "42de6eaab4ed149e60c9b367ada54f01a3b1e4d6846784f9b9710e770ff5572c" }, "downloads": -1, "filename": "check-manifest-0.40.tar.gz", "has_sig": false, "md5_digest": "e85bfc8239287963b71d663dd116c404", "packagetype": "sdist", "python_version": "source", "requires_python": ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", "size": 34245, "upload_time": "2019-10-15T07:07:00", "url": "https://files.pythonhosted.org/packages/10/2a/71cf4f24856ecef4a86be5b90591fcfb490adef38c424f6e7698af4269bb/check-manifest-0.40.tar.gz" } ] }