{ "info": { "author": "Jim Fulton", "author_email": "jim@zope.com", "bugtrack_url": null, "classifiers": [ "Intended Audience :: Developers", "License :: OSI Approved :: Zope Public License", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Topic :: Software Development :: Build Tools", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "********\nBuildout\n********\n\n.. image:: https://secure.travis-ci.org/buildout/buildout.png?branch=master\n :width: 82px\n :height: 13px\n :alt: Travis CI build report\n :target: https://travis-ci.org/buildout/buildout\n\nBuildout is a project designed to solve 2 problems:\n\n1. Application-centric assembly and deployment\n\n *Assembly* runs the gamut from stitching together libraries to\n create a running program, to production deployment configuration of\n applications, and associated systems and tools (e.g. run-control\n scripts, cron jobs, logs, service registration, etc.).\n\n Buildout might be confused with build tools like make or ant, but\n it is a little higher level and might invoke systems like make or\n ant to get its work done.\n\n Buildout might be confused with systems like puppet or chef, but it\n is more application focused. Systems like puppet or chef might\n use buildout to get their work done.\n\n Buildout is also somewhat Python-centric, even though it can be\n used to assemble and deploy non-python applications. It has some\n special features for assembling Python programs. It's scripted with\n Python, unlike, say puppet or chef, which are scripted with Ruby.\n\n2. Repeatable assembly of programs from Python software distributions\n\n Buildout puts great effort toward making program assembly a highly\n repeatable process, whether in a very open-ended development mode,\n where dependency versions aren't locked down, or in a deployment\n environment where dependency versions are fully specified. You\n should be able to check buildout into a VCS and later check it out.\n Two checkouts built at the same time in the same environment should\n always give the same result, regardless of their history. Among\n other things, after a buildout, all dependencies should be at the\n most recent version consistent with any version specifications\n expressed in the buildout.\n\n Buildout supports applications consisting of multiple programs,\n with different programs in an application free to use different\n versions of Python distributions. This is in contrast with a\n Python installation (real or virtual), where, for any given\n distribution, there can only be one installed.\n\nTo learn more about buildout, including how to use it, see\nhttp://docs.buildout.org/.\n\nChange History\n**************\n\n2.13.2 (2019-07-03)\n===================\n\n- Fixed DeprecationWarning on python 3.7: \"'U' mode is deprecated\".\n\n\n2.13.1 (2019-01-29)\n===================\n\n- Documentation update for the new ``buildout query`` command.\n\n\n2.13.0 (2019-01-17)\n===================\n\n- Get information about the configuration with new command ``buildout query``.\n\n\n2.12.2 (2018-09-04)\n===================\n\n- Upon an error, buildout exits with a non-zero exit code. This now also works\n when running with ``-D``.\n\n- Fixed most 'Deprecation' and 'Resource' warnings.\n\n\n2.12.1 (2018-07-02)\n===================\n\n- zc.buildout now explicitly requests zc.recipe.egg >=2.0.6 now.\n\n\n2.12.0 (2018-07-02)\n===================\n\n- Add a new buildout option ``allow-unknown-extras`` to enable\n installing requirements that specify extras that do not exist. This\n needs a corresponding update to zc.recipe.egg. See `issue 457\n `_.\n\n zc.recipe.egg has been updated to 2.0.6 for this change.\n\n\n2.11.5 (2018-06-19)\n===================\n\n- Fix for `issue 295 `_. On\n windows, deletion of temporary egg files is more robust now.\n\n\n2.11.4 (2018-05-14)\n===================\n\n- Fix for `issue 451 `_:\n distributions with a version number that normalizes to a shorter version\n number (3.3.0 to 3.3, for instance) can be installed now.\n\n\n2.11.3 (2018-04-13)\n===================\n\n- Update to use the new PyPI at https://pypi.org/.\n\n\n2.11.2 (2018-03-19)\n===================\n\n- Fix for the #442 issue: AttributeError on\n ``pkg_resources.SetuptoolsVersion``.\n\n\n2.11.1 (2018-03-01)\n===================\n\n- Made upgrade check more robust. When using extensions, the improvement\n introduced in 2.11 could prevent buildout from restarting itself when it\n upgraded setuptools.\n\n\n2.11.0 (2018-01-21)\n===================\n\n- Installed packages are added to the working set immediately. This helps in\n some corner cases that occur when system packages have versions that\n conflict with our specified versions.\n\n\n2.10.0 (2017-12-04)\n===================\n\n- Setuptools 38.2.0 started supporting wheels. Through setuptools, buildout\n now also supports wheels! You need at least version 38.2.3 to get proper\n namespace support.\n\n This setuptools change interfered with buildout's recent support for\n `buildout.wheel `_, resulting in\n a sudden \"Wheels are not supported\" error message (see `issue 435\n `_). Fixed by making\n setuptools the default, though you can still use the buildout.wheel if you\n want.\n\n\n2.9.6 (2017-12-01)\n==================\n\n- Fixed: could not install eggs when sdist file name and package name had different\n case.\n\n\n2.9.5 (2017-09-22)\n==================\n\n- Use HTTPS for PyPI's index. PyPI redirects HTTP to HTTPS by default\n now so using HTTPS directly avoids the potential for that redirect\n being modified in flight.\n\n\n2.9.4 (2017-06-20)\n==================\n\n- Sort the distributions used to compute ``__buildout_signature__`` to\n ensure reproducibility under Python 3 or under Python 2 when ``-R``\n is used on ``PYTHONHASHSEED`` is set to ``random``. Fixes `issue 392\n `_.\n\n **NOTE**: This may cause existing ``.installed.cfg`` to be\n considered outdated and lead to parts being reinstalled spuriously\n under Python 2.\n\n- Add support code for doctests to be able to easily measure code\n coverage. See `issue 397 `_.\n\n2.9.3 (2017-03-30)\n==================\n\n- Add more verbosity to ``annotate`` results with ``-v``\n\n- Select one or more sections with arguments after ``buildout annotate``.\n\n\n2.9.2 (2017-03-06)\n==================\n\n- Fixed: We unnecessarily used a function from newer versions of\n setuptools that caused problems when older setuptools or pkg_resources\n installs were present (as in travis.ci).\n\n\n2.9.1 (2017-03-06)\n==================\n\n- Fixed a minor packaging bug that broke the PyPI page.\n\n\n2.9.0 (2017-03-06)\n==================\n\n- Added new syntax to explicitly declare that a part depends on other part.\n See http://docs.buildout.org/en/latest/topics/implicit-parts.html\n\n- Internal refactoring to work with `buildout.wheel\n `_.\n\n- Fixed a bugs in ``zc.buildout.testing.Buildout``. It was loading\n user-default configuration. It didn't support calling the\n ``created`` method on its sections.\n\n- Fixed a bug (windows, py 3.4)\n When processing metadata on \"old-style\" distutils scripts, .exe stubs\n appeared in ``metadata_listdir``, in turn reading those burped with\n ``UnicodeDecodeError``. Skipping .exe stubs now.\n\n\n2.8.0 (2017-02-13)\n==================\n\n- Added a hook to enable a soon-to-be-released buildout extension to\n provide wheel support.\n\n2.7.1 (2017-01-31)\n==================\n\n- Fixed a bug introduced in 2.6.0:\n zc.buildout and its dependeoncies were reported as picked even when\n their versions were fixed in a ``versions`` section. Worse, when the\n ``update-versions-file`` option was used, the ``versions`` section was\n updated needlessly on every run.\n\n\n2.7.0 (2017-01-30)\n==================\n\n- Added a buildout option, ``abi-tag-eggs`` that, when true, causes\n the `ABI tag `_\n for the buildout environment to be added to the eggs directory name.\n\n This is useful when switching Python implementations (e.g. CPython\n vs PyPI or debug builds vs regular builds), especially when\n environment differences aren't reflected in egg names. It also has\n the side benefit of making eggs directories smaller, because eggs\n for different Python versions are in different directories.\n\n2.6.0 (2017-01-29)\n==================\n\n- Updated to work with the latest setuptools.\n\n- Added (verified) Python 3.6 support.\n\n2.5.3 (2016-09-05)\n==================\n\n- After a dist is fetched and put into its final place, compile its\n python files. No longer wait with compiling until all dists are in\n place. This is related to the change below about not removing an\n existing egg. [maurits]\n\n- Do not remove an existing egg. When installing an egg to a location\n that already exists, keep the current location (directory or file).\n This can only happen when the location at first did not exist and\n this changed during the buildout run. We used to remove the\n previous location, but this could cause problems when running two\n buildouts at the same time, when they try to install the same new\n egg. Fixes #307. [maurits]\n\n- In ``zc.buildout.testing.system``, set ``TERM=dumb`` in the environment.\n This avoids invisible control characters popping up in some terminals,\n like ``xterm``. Note that this may affect tests by buildout recipes.\n [maurits]\n\n- Removed Python 2.6 and 3.2 support.\n [do3cc]\n\n\n2.5.2 (2016-06-07)\n==================\n\n- Fixed ``-=`` and ``+=`` when extending sections. See #161.\n [puittenbroek]\n\n\n2.5.1 (2016-04-06)\n==================\n\n- Fix python 2 for downloading external config files with basic auth in the\n URL. Fixes #257.\n\n\n2.5.0 (2015-11-16)\n==================\n\n- Added more elaborate version and requirement information when there's a\n version conflict. Previously, you could get a report of a version conflict\n without information about which dependency requested the conflicing\n requirement.\n\n Now all this information is logged and displayed in case of an error.\n [reinout]\n\n- Dropped 3.2 support (at least in the automatic tests) as setuptools will\n soon stop supporting it. Added python 3.5 to the automatic tests.\n [reinout]\n\n\n2.4.7 (2015-10-29)\n==================\n\n- Fix for #279. Distutils script detection previously broke on windows with\n python 3 because it errored on ``.exe`` files.\n [reinout]\n\n\n2.4.6 (2015-10-28)\n==================\n\n- Relative paths are now also correctly generated for the current directory\n (\"develop = .\").\n [youngking]\n\n\n2.4.5 (2015-10-14)\n==================\n\n- More complete fix for #24. Distutils scripts are now also generated for\n develop eggs.\n [reinout]\n\n\n2.4.4 (2015-10-02)\n==================\n\n- zc.buildout is now also released as a wheel. (Note: buildout itself doesn't\n support installing wheels yet.)\n [graingert]\n\n\n2.4.3 (2015-09-03)\n==================\n\n- Added nested directory creation support\n [guyzmo]\n\n\n2.4.2 (2015-08-26)\n==================\n\n- If a downloaded config file in the \"extends-cache\" gets corrupted, buildout\n now tells you the filename in the cache. Handy for troubleshooting.\n [reinout]\n\n\n2.4.1 (2015-08-08)\n==================\n\n- Check the ``use-dependency-links`` option earlier. This can give\n a small speed increase.\n [maurits]\n\n- When using python 2, urllib2 is used to work around Python issue 24599, which\n affects downloading from behind a proxy.\n [stefano-m]\n\n\n2.4.0 (2015-07-01)\n==================\n\n- Buildout no longer breaks on packages that contain a file with a non-ascii\n filename. Fixes #89 and #148.\n [reinout]\n\n- Undo breakage on Windows machines where ``sys.prefix`` can also be a\n ``site-packages`` directory: don't remove it from ``sys.path``. See\n https://github.com/buildout/buildout/issues/217 .\n\n- Remove assumption that ``pkg_resources`` is a module (untrue since\n release of `setuptools 8.3``). See\n https://github.com/buildout/buildout/issues/227 .\n\n- Fix for #212. For certain kinds of conflict errors you'd get an UnpackError\n when rendering the error message. Instead of a nicely formatted version\n conflict message.\n [reinout]\n\n- Making sure we use the correct easy_install when setuptools is installed\n globally. See https://github.com/buildout/buildout/pull/232 and\n https://github.com/buildout/buildout/pull/222 .\n [lrowe]\n\n- Updated buildout's `travis-ci `_\n configuration so that tests run much quicker so that buildout is easier and\n quicker to develop.\n [reinout]\n\n- Note: zc.recipe.egg has also been updated to 2.0.2 together with this\n zc.buildout release. Fixed: In ``zc.recipe.egg#custom`` recipe's ``rpath``\n support, don't assume path elements are buildout-relative if they start with\n one of the \"special\" tokens (e.g., ``$ORIGIN``). See:\n https://github.com/buildout/buildout/issues/225.\n [tseaver]\n\n- ``download-cache``, ``eggs-directory`` and ``extends-cache`` are now\n automatically created if their parent directory exists. Also they can be\n relative directories (relative to the location of the buildout config file\n that defines them). Also they can now be in the form ``~/subdir``, with the\n usual convention that the ``~`` char means the home directory of the user\n running buildout.\n [lelit]\n\n- A new boostrap.py file is released (version 2015-07-01).\n\n- When bootstrapping, the ``develop-eggs/`` directory is first removed. This\n prevents old left-over ``.egg-link`` files from breaking buildout's careful\n package collection mechanism.\n [reinout]\n\n- The bootstrap script now accepts ``--to-dir``. Setuptools is installed\n there. If already available there, it is reused. This can be used to\n bootstrap buildout without internet access. Similarly, a local\n ``ez_setup.py`` is used when available instead of it being downloaded. You\n need setuptools 14.0 or higher for this functionality.\n [lrowe]\n\n- The bootstrap script now uses ``--buildout-version`` instead of\n ``--version`` to pick a specific buildout version.\n [reinout]\n\n- The bootstrap script now accepts ``--version`` which prints the bootstrap\n version. This version is the date the bootstrap.py was last changed. A date\n is handier or less confusing than either tracking zc.buildout's version or\n having a separate bootstrap version number.\n [reinout]\n\n2.3.1 (2014-12-16)\n==================\n\n- Fixed: Buildout merged single-version requirements with\n version-range requirements in a way that caused it to think there\n wasn't a single-version requirement. IOW, buildout throught that\n versions were being picked when they weren't.\n\n- Suppress spurios (and possibly non-spurious) version-parsing warnings.\n\n2.3.0 (2014-12-14)\n==================\n\n- Buildout is now compatible with (and requires) setuptools 8.\n\n2.2.5 (2014-11-04)\n==================\n\n- Improved fix for #198: when bootstrapping with an extension, buildout was\n too strict on itself, resulting in an inability to upgrade or downgrade its\n own version.\n [reinout]\n\n- Setuptools must be at 3.3 or higher now. If you use the latest bootstrap\n from http://downloads.buildout.org/2/bootstrap.py you're all set.\n [reinout]\n\n- Installing *recipes* that themselves have dependencies used to fail with a\n VersionConflict if such a dependency was installed globally with a lower\n version. Buildout now ignores the version conflict in those cases and simply\n installs the correct version.\n [reinout]\n\n2.2.4 (2014-11-01)\n==================\n\n- Fix for #198: buildout 2.2.3 caused a version conflict when bootstrapping a\n buildout with a version pinned to an earlier one. Same version conflict\n could occur with system-wide installed packages that were newer than the\n pinned version.\n [reinout]\n\n2.2.3 (2014-10-30)\n==================\n\n- Fix #197, Python 3 regression\n [aclark4life]\n\n2.2.2 (2014-10-30)\n==================\n\n- Open files for ``exec()`` in universal newlines mode. See\n https://github.com/buildout/buildout/issues/130\n\n- Add ``BUILDOUT_HOME`` as an alternate way to control how the user default\n configuration is found.\n\n- Close various files when finished writing to them. This avoids\n ResourceWarnings on Python 3, and better supports doctests under PyPy.\n\n- Introduce improved easy_install Install.install function. This is present\n in 1.5.X and 1.7X but was never merged into 2.X somehow.\n\n2.2.1 (2013-09-05)\n==================\n\n- ``distutils`` scripts: correct order of operations on ``from ... import``\n lines (see https://github.com/buildout/buildout/issues/134).\n\n- Add an ``--allow-site-packges`` option to ``bootstrap.py``, defaulting\n to False. If the value is false, strip any \"site packages\" (as defined by\n the ``site`` module) from ``sys.path`` before attempting to import\n ``setuptools`` / ``pkg_resources``.\n\n- Updated the URL used to fetch ``ez_setup.py`` to the official, non-version-\n pinned version.\n\n2.2.0 (2013-07-05)\n==================\n\n- Handle both addition and subtraction of elements (+= and -=) on the same key\n in the same section. Forward-ported from buildout 1.6.\n\n- Suppress the useless ``Link to ***BLOCKED*** by --allow-hosts``\n error message being emitted by distribute / setuptools.\n\n- Extend distutils script generation to support module docstrings and\n __future__ imports.\n\n- Refactored picked versions logic to make it easier to use for plugins.\n\n- Use ``get_win_launcher`` API to find Windows launcher (falling back to\n ``resource_string`` for ``cli.exe``).\n\n- Remove ``data_files`` from ``setup.py``: it was installing ``README.txt``\n in current directory during installation (merged from 1.x branch).\n\n- Switch dependency from ``distribute 0.6.x`` to ``setuptools 0.7.x``.\n\n2.1.0 (2013-03-23)\n==================\n\n- Meta-recipe support\n\n- Conditional sections\n\n- Buildout now accepts a ``--version`` command-line option to print\n its version.\n\nFixed: Builout didn't exit with a non-zero exit status if there was a\n failure in combination with an upgrade.\n\nFixed: We now fail with an informative error when an old bootstrap\n script causes buildout 2 to be used with setuptools.\n\nFixed: An error incorrectly suggested that buildout 2 implemented all\n of the functionality of dumppickedversions.\n\nFixed: Buildout generated bad scripts when no eggs needed to be added\n to ``sys.path``.\n\nFixed: Buildout didn't honour Unix umask when generating scripts.\n https://bugs.launchpad.net/zc.buildout/+bug/180705\n\nFixed: ``update-versions-file`` didn't work unless\n ``show-picked-versions`` was also set.\n https://github.com/buildout/buildout/issues/71\n\n2.0.1 (2013-02-16)\n==================\n\n- Fixed: buildout didn't honor umask settings when creating scripts.\n\n- Fix for distutils scripts installation on Python 3, related to\n ``__pycache__`` directories.\n\n- Fixed: encoding data in non-entry-point-based scripts was lost.", "description_content_type": "", "docs_url": null, "download_url": "", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "http://buildout.org", "keywords": "development build", "license": "ZPL 2.1", "maintainer": "", "maintainer_email": "", "name": "zc.buildout", "package_url": "https://pypi.org/project/zc.buildout/", "platform": "", "project_url": "https://pypi.org/project/zc.buildout/", "project_urls": { "Homepage": "http://buildout.org" }, "release_url": "https://pypi.org/project/zc.buildout/2.13.2/", "requires_dist": null, "requires_python": "", "summary": "System for managing development buildouts", "version": "2.13.2" }, "last_serial": 5480250, "releases": { "1.0.0": [ { "comment_text": "", "digests": { "md5": "0f867256d2096a9644c7d59a431a9fc5", "sha256": "8dd5977d23cf81e36ef67ccf81f13f5a2acda0dde23979a038b941bb5489fcc5" }, "downloads": -1, "filename": "zc.buildout-1.0.0.tar.gz", "has_sig": false, "md5_digest": "0f867256d2096a9644c7d59a431a9fc5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 194174, "upload_time": "2008-01-14T01:12:14", "url": "https://files.pythonhosted.org/packages/15/40/0d2b318052138f4b91ce067e41919eb201f02d38280a0842d73228aeb9b8/zc.buildout-1.0.0.tar.gz" } ], "1.0.0b16": [ { "comment_text": "", "digests": { "md5": "965d7ac284b757be26230653a4bce75e", "sha256": "08431ecd05859a94b82e69b8207008f6090675db73cb58bf04946ada23fc68ae" }, "downloads": -1, "filename": "zc.buildout-1.0.0b16-py2.3.egg", "has_sig": false, "md5_digest": "965d7ac284b757be26230653a4bce75e", "packagetype": "bdist_egg", "python_version": "2.3", "requires_python": null, "size": 430926, "upload_time": "2006-12-07T19:47:13", "url": "https://files.pythonhosted.org/packages/0e/13/7d521564978e9b6c091eab7c36ad4a34677093b0428c7ea0716081aecf75/zc.buildout-1.0.0b16-py2.3.egg" }, { "comment_text": "", "digests": { "md5": "34dbb7686bd8c28ee8725f4329ab24af", "sha256": "5de9864564e66692315bf03eac90718a9dc1e31e4678e27ab3da3df9aaaa0e7f" }, "downloads": -1, "filename": "zc.buildout-1.0.0b16-py2.4.egg", "has_sig": false, "md5_digest": "34dbb7686bd8c28ee8725f4329ab24af", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 115923, "upload_time": "2006-12-07T19:48:16", "url": "https://files.pythonhosted.org/packages/a7/25/ee0a3d3c07a0651bd0c95b9a2255cf9b3b1f41b2f4a2a752f269676fd5dc/zc.buildout-1.0.0b16-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "366faf1fe79e2acdca1c9099375f3c3d", "sha256": "3f1b00a3861ecac5e6bb66e2ad5f35f9d3c79258557ae060ab6ee2e41fbb978c" }, "downloads": -1, "filename": "zc.buildout-1.0.0b16-py2.5.egg", "has_sig": false, "md5_digest": "366faf1fe79e2acdca1c9099375f3c3d", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 114868, "upload_time": "2006-12-07T19:49:09", "url": "https://files.pythonhosted.org/packages/30/88/4a62e2136fe6258d25ef22e50b8f0f339e463c0ca942a797bf1cd8fcdf92/zc.buildout-1.0.0b16-py2.5.egg" } ], "1.0.0b17": [ { "comment_text": "", "digests": { "md5": "c39a81d83e821be587924634eb2454a4", "sha256": "2ab3101c89dafe5fe0537df7c45b2747d065ad98988602dd30fc8f5f02bfe665" }, "downloads": -1, "filename": "zc.buildout-1.0.0b17-py2.3.egg", "has_sig": false, "md5_digest": "c39a81d83e821be587924634eb2454a4", "packagetype": "bdist_egg", "python_version": "2.3", "requires_python": null, "size": 439670, "upload_time": "2006-12-07T22:29:59", "url": "https://files.pythonhosted.org/packages/2b/92/c7e6c5b18c36780b07e9d92dc03e5eae7152428dd626ce9ccef4416e9de3/zc.buildout-1.0.0b17-py2.3.egg" }, { "comment_text": "", "digests": { "md5": "ee4ab84d428c50beeb40c7b3fedd30d8", "sha256": "2e4933bab323bac97ed67cc2c4706bf5b946cc33d0babd2d3de637f7078913dd" }, "downloads": -1, "filename": "zc.buildout-1.0.0b17-py2.4.egg", "has_sig": false, "md5_digest": "ee4ab84d428c50beeb40c7b3fedd30d8", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 117572, "upload_time": "2006-12-07T22:30:56", "url": "https://files.pythonhosted.org/packages/6d/ce/28d4d94fd4adb366e8b2e0c1c3055d93c2241940ff5d70940283d4460f1d/zc.buildout-1.0.0b17-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "5a573c2e1623aaccfeb6919824781dbf", "sha256": "4681a6ad9ed5a25284aa4a6b5c755f5541c4ec9d57d4846e572f466f0f940d38" }, "downloads": -1, "filename": "zc.buildout-1.0.0b17-py2.5.egg", "has_sig": false, "md5_digest": "5a573c2e1623aaccfeb6919824781dbf", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 116527, "upload_time": "2006-12-07T22:31:31", "url": "https://files.pythonhosted.org/packages/25/5d/e4fad8a731a0dc1258f14b4d0a939267236a6db5035814387209a668d56d/zc.buildout-1.0.0b17-py2.5.egg" } ], "1.0.0b18": [ { "comment_text": "", "digests": { "md5": "ec1267287479e3ab724f57d8367ada6c", "sha256": "34a6f20ba0e03db2fb33f49984497b8122e7bfc01ab95e0b9314d66a0c194a08" }, "downloads": -1, "filename": "zc.buildout-1.0.0b18-py2.3.egg", "has_sig": false, "md5_digest": "ec1267287479e3ab724f57d8367ada6c", "packagetype": "bdist_egg", "python_version": "2.3", "requires_python": null, "size": 445508, "upload_time": "2007-01-22T17:18:03", "url": "https://files.pythonhosted.org/packages/94/2d/1cb492d9c8c2dbe064a0c26237976f8993e1e9188c33cb484b281d96ed93/zc.buildout-1.0.0b18-py2.3.egg" }, { "comment_text": "", "digests": { "md5": "2ec16bb5635f4e02a4b18fd4170e545c", "sha256": "99a4dbe6690e82d010fec23b5ec13cd12ff7c4b816ca035a32d8bdeccb0293a7" }, "downloads": -1, "filename": "zc.buildout-1.0.0b18-py2.4.egg", "has_sig": false, "md5_digest": "2ec16bb5635f4e02a4b18fd4170e545c", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 118844, "upload_time": "2007-01-22T17:17:19", "url": "https://files.pythonhosted.org/packages/85/8f/29f06875d539ef99d7916ca3d624f96bb3c52ef40fbf125a3e81fe42b8ca/zc.buildout-1.0.0b18-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "de980c3863d5b8d12a55bafe2615169d", "sha256": "2eb554575c6ec079735c516ea301e7bd430392bde5955867edae1feea6b3d83b" }, "downloads": -1, "filename": "zc.buildout-1.0.0b18-py2.5.egg", "has_sig": false, "md5_digest": "de980c3863d5b8d12a55bafe2615169d", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 117798, "upload_time": "2007-01-22T17:16:39", "url": "https://files.pythonhosted.org/packages/08/c6/6fb0f6f99f9afefe664f5d4a55cf0cfa28b7e8b7533016a22de0a192b0e7/zc.buildout-1.0.0b18-py2.5.egg" } ], "1.0.0b19": [ { "comment_text": "", "digests": { "md5": "7f80e5c809651fb7012f0cf7d9a06386", "sha256": "ed643cb0eb130fcb1f055e1a2d56c7bb3b26ad0bc7edc15930551e9651e4e71d" }, "downloads": -1, "filename": "zc.buildout-1.0.0b19-py2.3.egg", "has_sig": false, "md5_digest": "7f80e5c809651fb7012f0cf7d9a06386", "packagetype": "bdist_egg", "python_version": "2.3", "requires_python": null, "size": 448248, "upload_time": "2007-01-24T23:29:59", "url": "https://files.pythonhosted.org/packages/9f/ac/ba005b9ef98210cc6b46fecd8fb38c707e8adb6ea726f1a9f74135be595a/zc.buildout-1.0.0b19-py2.3.egg" }, { "comment_text": "", "digests": { "md5": "f2ecceec901803e2a2cf42f5e059afd2", "sha256": "fa5f0d9e2a5adb742bd7b230bff41d1abb92358b1d1bc49839109545161445c9" }, "downloads": -1, "filename": "zc.buildout-1.0.0b19-py2.4.egg", "has_sig": false, "md5_digest": "f2ecceec901803e2a2cf42f5e059afd2", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 119461, "upload_time": "2007-01-24T23:47:22", "url": "https://files.pythonhosted.org/packages/fc/c3/f834cf3aa983c71ab1bcb62307a1b0d3d70aaa9d2ee809d296f17cd8ec43/zc.buildout-1.0.0b19-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "ca1aed0bc3b4266b67deb51065980f2e", "sha256": "6c42540508c272d3be0975f6d3e70bc89b10f666dc9d7cfb952bd3bf117f566b" }, "downloads": -1, "filename": "zc.buildout-1.0.0b19-py2.5.egg", "has_sig": false, "md5_digest": "ca1aed0bc3b4266b67deb51065980f2e", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 118407, "upload_time": "2007-01-24T23:47:46", "url": "https://files.pythonhosted.org/packages/07/7d/a5ea096d41b7915782e3181d9d068d44105db7ffa97f66a2328c4f89dc9a/zc.buildout-1.0.0b19-py2.5.egg" } ], "1.0.0b20": [ { "comment_text": "", "digests": { "md5": "dcb3e95fb0a5adedbf4cdc7e0e398d3b", "sha256": "f86c4394eb21bea5240b4f5004f223a7beec2582a99fc613774fd22fe8bab5bc" }, "downloads": -1, "filename": "zc.buildout-1.0.0b20-py2.3.egg", "has_sig": false, "md5_digest": "dcb3e95fb0a5adedbf4cdc7e0e398d3b", "packagetype": "bdist_egg", "python_version": "2.3", "requires_python": null, "size": 477655, "upload_time": "2007-02-08T17:46:37", "url": "https://files.pythonhosted.org/packages/57/58/ce6e70d0fb25aa244f03f9dafaec5dfc6b79c2ca6dc9744cb6620e35dc3d/zc.buildout-1.0.0b20-py2.3.egg" }, { "comment_text": "", "digests": { "md5": "0d7539c564baf2f6cfafb64ddac6109c", "sha256": "dc2bcf5c23cd464962367850331c95e1cc72e36c8f452faa8d04c060c2ef4e5c" }, "downloads": -1, "filename": "zc.buildout-1.0.0b20-py2.4.egg", "has_sig": false, "md5_digest": "0d7539c564baf2f6cfafb64ddac6109c", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 124747, "upload_time": "2007-02-08T17:46:17", "url": "https://files.pythonhosted.org/packages/b3/e4/478f9cefb714736a9fbff4f9c3bde8e96a06377460cd782122aa973b0949/zc.buildout-1.0.0b20-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "a24d84c0934bb4b29b15bdae8eca94d0", "sha256": "48b67262b04979ae9bd71a4140427bd72c27ec632614d1c18584ab502c5536e4" }, "downloads": -1, "filename": "zc.buildout-1.0.0b20-py2.5.egg", "has_sig": false, "md5_digest": "a24d84c0934bb4b29b15bdae8eca94d0", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 123708, "upload_time": "2007-02-08T17:46:46", "url": "https://files.pythonhosted.org/packages/5d/8a/01002fd117dcb7689c87bb7e1b1b80eca8aa979f887628f98753d4e1a8be/zc.buildout-1.0.0b20-py2.5.egg" } ], "1.0.0b21": [ { "comment_text": "", "digests": { "md5": "620a8282195c5935e1d5ba0a02c9ae8e", "sha256": "ba1ca90aed2cae809b61820b705ee46f98bfc1fd28610515b69e7895ea4ae91f" }, "downloads": -1, "filename": "zc.buildout-1.0.0b21-py2.3.egg", "has_sig": false, "md5_digest": "620a8282195c5935e1d5ba0a02c9ae8e", "packagetype": "bdist_egg", "python_version": "2.3", "requires_python": null, "size": 508055, "upload_time": "2007-03-06T20:12:08", "url": "https://files.pythonhosted.org/packages/95/22/aaaa32d7c44dba637d6334df35ec24cdd23d6a027b652b6b47df2e504178/zc.buildout-1.0.0b21-py2.3.egg" }, { "comment_text": "", "digests": { "md5": "47380209d94ae825080bd0d1bdb0062b", "sha256": "93a86dfa5b80676fb641a718c657e488812c8311408dbf5219a8be03cdea956f" }, "downloads": -1, "filename": "zc.buildout-1.0.0b21-py2.4.egg", "has_sig": false, "md5_digest": "47380209d94ae825080bd0d1bdb0062b", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 131315, "upload_time": "2007-03-06T20:11:35", "url": "https://files.pythonhosted.org/packages/54/67/288ae545f0cbbe42e438e58dcad9cc71008b1375bd3b0dd6a7429d434c74/zc.buildout-1.0.0b21-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "d2aec08dd1134b0d1ab606ca12239226", "sha256": "7ea5d16815f6f28220e6404d3506b06617ca8b10f0d5b4014219a19fd3df28ed" }, "downloads": -1, "filename": "zc.buildout-1.0.0b21-py2.5.egg", "has_sig": false, "md5_digest": "d2aec08dd1134b0d1ab606ca12239226", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 130282, "upload_time": "2007-03-06T20:12:16", "url": "https://files.pythonhosted.org/packages/94/ef/9b10f7b9014ff0943ff723d02412c98ee1d58e92eca05a6bc9dec91731d2/zc.buildout-1.0.0b21-py2.5.egg" } ], "1.0.0b22": [ { "comment_text": "", "digests": { "md5": "9e386afb172996238110a9fe9ed91b10", "sha256": "65c9a2090c46189afd3b441c7519d4d33a5c8a1da7fb1a7d9cb799dfa9ad4e2d" }, "downloads": -1, "filename": "zc.buildout-1.0.0b22-py2.3.egg", "has_sig": false, "md5_digest": "9e386afb172996238110a9fe9ed91b10", "packagetype": "bdist_egg", "python_version": "2.3", "requires_python": null, "size": 543188, "upload_time": "2007-03-15T13:17:56", "url": "https://files.pythonhosted.org/packages/f1/2c/e5f991fbf0fada198ed53e1d122bd0c22890c62db5fb3e559aed3916399a/zc.buildout-1.0.0b22-py2.3.egg" }, { "comment_text": "", "digests": { "md5": "a89ffea8cc2d9b231fc483cad6cc9871", "sha256": "1e20b4201568ce59973c44617448a10a19e00efb77735d56d4a48f10885382e6" }, "downloads": -1, "filename": "zc.buildout-1.0.0b22-py2.4.egg", "has_sig": false, "md5_digest": "a89ffea8cc2d9b231fc483cad6cc9871", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 138301, "upload_time": "2007-03-15T13:12:13", "url": "https://files.pythonhosted.org/packages/de/bb/74a91dc3079d1f3167b17025dee7f48cb7bb727f0b9c07467acc80126d98/zc.buildout-1.0.0b22-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "312f35475fcdb29d19b3c031b39ae44a", "sha256": "f44b3c84bb4869929919ab24ba07bbc3713f13e90b88b1535a29660060f90c22" }, "downloads": -1, "filename": "zc.buildout-1.0.0b22-py2.5.egg", "has_sig": false, "md5_digest": "312f35475fcdb29d19b3c031b39ae44a", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 137204, "upload_time": "2007-03-15T13:16:50", "url": "https://files.pythonhosted.org/packages/98/44/44410acb8c9a3f336d7f15fdc1c4d92271fd5aeb919a21c04f5ea8ac327f/zc.buildout-1.0.0b22-py2.5.egg" } ], "1.0.0b23": [ { "comment_text": "", "digests": { "md5": "a3610bf42d84988619c89757a6ab3370", "sha256": "5f6cb770f69bb356589a6fefcad0caea7b6856b3c6467ec9148316c02fc585dc" }, "downloads": -1, "filename": "zc.buildout-1.0.0b23-py2.3.egg", "has_sig": false, "md5_digest": "a3610bf42d84988619c89757a6ab3370", "packagetype": "bdist_egg", "python_version": "2.3", "requires_python": null, "size": 586361, "upload_time": "2007-03-19T17:07:14", "url": "https://files.pythonhosted.org/packages/09/46/70b8316073198fb591499076ae6aff2ace8dfaddf8a210ca4d5786477bfa/zc.buildout-1.0.0b23-py2.3.egg" }, { "comment_text": "", "digests": { "md5": "1a7e801ef4a73ffa164c316840fbb217", "sha256": "496b84bc5fd0c8db178558c35d64470f96b8a07d11782fd97106abbdbe37c406" }, "downloads": -1, "filename": "zc.buildout-1.0.0b23-py2.4.egg", "has_sig": false, "md5_digest": "1a7e801ef4a73ffa164c316840fbb217", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 147625, "upload_time": "2007-03-19T17:06:30", "url": "https://files.pythonhosted.org/packages/85/71/9eb234fce2bb0b4698e0a4455a6c0aca28ef518e776d02c8dddd4f3f8d2b/zc.buildout-1.0.0b23-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "1b8bc58f5d5409056f4a3e69d2f4a348", "sha256": "176753521502dd4ed6831f8447dd187a55e0232b9725c20d28ee26399fa7a73c" }, "downloads": -1, "filename": "zc.buildout-1.0.0b23-py2.5.egg", "has_sig": false, "md5_digest": "1b8bc58f5d5409056f4a3e69d2f4a348", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 146517, "upload_time": "2007-03-19T17:07:34", "url": "https://files.pythonhosted.org/packages/e0/43/368251146585a13e16d5469da6004d1d458707fbdbdfc6f2113b74ed3de5/zc.buildout-1.0.0b23-py2.5.egg" } ], "1.0.0b24": [ { "comment_text": "", "digests": { "md5": "6552026ee33eb979a458139481b6486c", "sha256": "f76781ead96cc0b9ed6877ae9094a634fbc8ac887984c774f0957da379606fd0" }, "downloads": -1, "filename": "zc.buildout-1.0.0b24-py2.3.egg", "has_sig": false, "md5_digest": "6552026ee33eb979a458139481b6486c", "packagetype": "bdist_egg", "python_version": "2.3", "requires_python": null, "size": 634195, "upload_time": "2007-05-09T10:51:16", "url": "https://files.pythonhosted.org/packages/d2/a0/340072b69be55ecd507c2bb2efcc23a901463218d7b7eedc078c86ea627e/zc.buildout-1.0.0b24-py2.3.egg" }, { "comment_text": "", "digests": { "md5": "c836a9f26096990ad87a8a2098261d4a", "sha256": "5cbfbb97e6045114ec71673ba76e5b50598aea4cc50ead1f0d7dda2d19cd7cd8" }, "downloads": -1, "filename": "zc.buildout-1.0.0b24-py2.4.egg", "has_sig": false, "md5_digest": "c836a9f26096990ad87a8a2098261d4a", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 155482, "upload_time": "2007-05-09T10:50:44", "url": "https://files.pythonhosted.org/packages/39/ab/f157ffcefeb45536da58271dcfc06e470b152e8dd7c8fb67939eb5437216/zc.buildout-1.0.0b24-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "7d6d6d7fe047357bdb0ca2c352e4d2a6", "sha256": "60b93aa2c51cf03b6420e4e655bb249c3defc197f570b4dd4585a5cec8fd965f" }, "downloads": -1, "filename": "zc.buildout-1.0.0b24-py2.5.egg", "has_sig": false, "md5_digest": "7d6d6d7fe047357bdb0ca2c352e4d2a6", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 154235, "upload_time": "2007-05-09T10:51:28", "url": "https://files.pythonhosted.org/packages/a7/19/7a9dfe138c3e399a6c2c17bbaa899c092d4c1ab0b236285938e9bff5f2e1/zc.buildout-1.0.0b24-py2.5.egg" } ], "1.0.0b25": [ { "comment_text": "", "digests": { "md5": "f2d7727d695c182b7d8ef6c26b25654f", "sha256": "93041887f13fb8168691485fa9e62cd7212abbd406fc752ccd2597af1266168d" }, "downloads": -1, "filename": "zc.buildout-1.0.0b25-py2.3.egg", "has_sig": false, "md5_digest": "f2d7727d695c182b7d8ef6c26b25654f", "packagetype": "bdist_egg", "python_version": "2.3", "requires_python": null, "size": 638394, "upload_time": "2007-05-31T14:53:59", "url": "https://files.pythonhosted.org/packages/10/bf/a8a7b631ade5d9a83a5f045403c7fdcf320d0b1304db16f0f75537b7e35f/zc.buildout-1.0.0b25-py2.3.egg" }, { "comment_text": "", "digests": { "md5": "8be6c694d711594a53f056fbe572ae0a", "sha256": "7958044915905e22b5adfaeca3e423e5c52d73ec49ba36b2707c7f718faf1e2f" }, "downloads": -1, "filename": "zc.buildout-1.0.0b25-py2.4.egg", "has_sig": false, "md5_digest": "8be6c694d711594a53f056fbe572ae0a", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 158462, "upload_time": "2007-05-31T14:49:29", "url": "https://files.pythonhosted.org/packages/04/8b/0bb754db7e90344fe8618434391506b2f4e4f1811c1a9d922d5bc621910a/zc.buildout-1.0.0b25-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "ad39a842006f03cf710c8928439e29aa", "sha256": "1735e330d72a2beafa142ee33c9c359b1125e63bfdf5b9b7cdecbb166cdc2c42" }, "downloads": -1, "filename": "zc.buildout-1.0.0b25-py2.5.egg", "has_sig": false, "md5_digest": "ad39a842006f03cf710c8928439e29aa", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 157210, "upload_time": "2007-05-31T14:53:34", "url": "https://files.pythonhosted.org/packages/84/8e/b4df901769a09a6183f80a382f6daae70178c332e310d52b940ca4e420e8/zc.buildout-1.0.0b25-py2.5.egg" } ], "1.0.0b26": [ { "comment_text": "", "digests": { "md5": "2f0b6ba9a977082bd0ebf895f39957eb", "sha256": "9b0c426ec1a7ce47e2a76129d960937317ddbbeb6ae167e2777ee79b44d93c68" }, "downloads": -1, "filename": "zc.buildout-1.0.0b26-py2.3.egg", "has_sig": false, "md5_digest": "2f0b6ba9a977082bd0ebf895f39957eb", "packagetype": "bdist_egg", "python_version": "2.3", "requires_python": null, "size": 642511, "upload_time": "2007-06-19T14:05:14", "url": "https://files.pythonhosted.org/packages/e7/e8/039b2cf65eb67b4dfbf59877ef29590fe112f4f12d214b805349b21e920a/zc.buildout-1.0.0b26-py2.3.egg" }, { "comment_text": "", "digests": { "md5": "9da19732d2fa592f9294b1a499d6ea28", "sha256": "b95084f175bab8475b4be2c5bcf8e923d4b57eb86cd3b08100bc63d42e5e8838" }, "downloads": -1, "filename": "zc.buildout-1.0.0b26-py2.4.egg", "has_sig": false, "md5_digest": "9da19732d2fa592f9294b1a499d6ea28", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 159498, "upload_time": "2007-06-19T14:05:34", "url": "https://files.pythonhosted.org/packages/7f/12/f0b22ee354931cba019d10faf8a21a79e6e6236847b72854af8c5c9ac569/zc.buildout-1.0.0b26-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "a403b7149429fca52d8a0064b10f97bc", "sha256": "1391df5538eb2e651848633a3a99173697a4cd91bc8c10d907e131f4deada0eb" }, "downloads": -1, "filename": "zc.buildout-1.0.0b26-py2.5.egg", "has_sig": false, "md5_digest": "a403b7149429fca52d8a0064b10f97bc", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 158246, "upload_time": "2007-06-19T14:05:42", "url": "https://files.pythonhosted.org/packages/b3/c4/aaca63d24884659803a5cbd91927baad2628df26acbd1bbf96858278d16c/zc.buildout-1.0.0b26-py2.5.egg" } ], "1.0.0b27": [ { "comment_text": "", "digests": { "md5": "9e7e78c8c3d545284125d5e0b1fd9edf", "sha256": "15fdd26ecce2ee31c6b8de82a2122deb5e6423ce7c1aad11c16fb40606118d18" }, "downloads": -1, "filename": "zc.buildout-1.0.0b27-py2.3.egg", "has_sig": false, "md5_digest": "9e7e78c8c3d545284125d5e0b1fd9edf", "packagetype": "bdist_egg", "python_version": "2.3", "requires_python": null, "size": 707243, "upload_time": "2007-06-20T18:47:14", "url": "https://files.pythonhosted.org/packages/3f/a7/9ffbbcb7bdb5f9814d9bc3998fbe93de3aaec1e9a9f11fc88b81709d9f08/zc.buildout-1.0.0b27-py2.3.egg" }, { "comment_text": "", "digests": { "md5": "ab8a29b384955dd6159b5a0397ec6248", "sha256": "f3278152baa2b7f31849d76f5a428b66b20a8d0ba9fb8210b5e9a54282c6169f" }, "downloads": -1, "filename": "zc.buildout-1.0.0b27-py2.4.egg", "has_sig": false, "md5_digest": "ab8a29b384955dd6159b5a0397ec6248", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 172662, "upload_time": "2007-06-20T18:46:09", "url": "https://files.pythonhosted.org/packages/2d/e2/6188516b2a0736d9ee9e3fdefd0488c8b6e1963b32dd3c34604252ff6e6d/zc.buildout-1.0.0b27-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "1b3aa31148f7f35df4e63c3304fa1328", "sha256": "206a280e7860238fd7c45f17242aef4d3654760abf56a1965a223d64a052ed0f" }, "downloads": -1, "filename": "zc.buildout-1.0.0b27-py2.5.egg", "has_sig": false, "md5_digest": "1b3aa31148f7f35df4e63c3304fa1328", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 171410, "upload_time": "2007-06-20T18:50:04", "url": "https://files.pythonhosted.org/packages/3f/07/ae484401f4cec5a69438a3e992850e9ab218c5d7d2689b60454a8e7d6e8e/zc.buildout-1.0.0b27-py2.5.egg" } ], "1.0.0b28": [ { "comment_text": "", "digests": { "md5": "687b104db1afa5c3e76dbbadcc0c7b98", "sha256": "e9acfff0d6129866bf22e67aa5e7d0bb9e9fe1bc9f17e5d0e500d6b7f0295d32" }, "downloads": -1, "filename": "zc.buildout-1.0.0b28-py2.3.egg", "has_sig": false, "md5_digest": "687b104db1afa5c3e76dbbadcc0c7b98", "packagetype": "bdist_egg", "python_version": "2.3", "requires_python": null, "size": 706272, "upload_time": "2007-07-05T12:54:54", "url": "https://files.pythonhosted.org/packages/b7/ad/420038004576697fdd91b9333a3715d729b0e054c764d95a3d6cb550c6af/zc.buildout-1.0.0b28-py2.3.egg" }, { "comment_text": "", "digests": { "md5": "97a67e5a9f5d605758538e7436d7524c", "sha256": "8870cfdba6c305770d90b19e3c64885fccbcb2ee50bd0fee6e55e51ab468535d" }, "downloads": -1, "filename": "zc.buildout-1.0.0b28-py2.4.egg", "has_sig": false, "md5_digest": "97a67e5a9f5d605758538e7436d7524c", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 172340, "upload_time": "2007-07-05T12:52:42", "url": "https://files.pythonhosted.org/packages/9f/e1/8d7d8659ad70a19ef498dcda3118d92c15cdbe140216fd2158bfe90c5ed7/zc.buildout-1.0.0b28-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "4e37e53f010ed7984555a029732f479d", "sha256": "c3891241ac83e8af00f45e323a3b77f763024706c0cdc89eee22f7cb9aaa08ef" }, "downloads": -1, "filename": "zc.buildout-1.0.0b28-py2.5.egg", "has_sig": false, "md5_digest": "4e37e53f010ed7984555a029732f479d", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 171081, "upload_time": "2007-07-05T12:54:23", "url": "https://files.pythonhosted.org/packages/d6/81/19fa12d72506f9eb6032767075968fea9b1d02deb8f85e3436c7da799df9/zc.buildout-1.0.0b28-py2.5.egg" } ], "1.0.0b29": [ { "comment_text": "", "digests": { "md5": "f07e8d68584b4563620a7a628ffc2d65", "sha256": "ce26699e5c7c91dfd7f0ae69e321edd1cfb0aed6f2ad5b515a0128e145e18ff5" }, "downloads": -1, "filename": "zc.buildout-1.0.0b29-py2.3.egg", "has_sig": false, "md5_digest": "f07e8d68584b4563620a7a628ffc2d65", "packagetype": "bdist_egg", "python_version": "2.3", "requires_python": null, "size": 727816, "upload_time": "2007-08-20T18:01:52", "url": "https://files.pythonhosted.org/packages/7b/65/26e8d442aff7ae8bf196a49aae06b1e909cab45e9fbdfa1decb83b3b6830/zc.buildout-1.0.0b29-py2.3.egg" }, { "comment_text": "", "digests": { "md5": "411b9ec370f0a115334270c651b56b28", "sha256": "09444f52ce61e0f78cc13ce9f673d83ddc875ed808985d55899514b5f7038484" }, "downloads": -1, "filename": "zc.buildout-1.0.0b29-py2.4.egg", "has_sig": false, "md5_digest": "411b9ec370f0a115334270c651b56b28", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 176602, "upload_time": "2007-08-20T17:59:28", "url": "https://files.pythonhosted.org/packages/53/16/2488bf20ad4406868f755afc99ba9dc4531b22c25bfe045ea34eba1a6d2b/zc.buildout-1.0.0b29-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "752e91631096e89cc30822c4a58fc136", "sha256": "a48fdb69f8033bd5d69c24e63825bb490672914f8da6ea23851916120bd57f44" }, "downloads": -1, "filename": "zc.buildout-1.0.0b29-py2.5.egg", "has_sig": false, "md5_digest": "752e91631096e89cc30822c4a58fc136", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 175343, "upload_time": "2007-08-20T18:00:19", "url": "https://files.pythonhosted.org/packages/67/38/c363b087419794e7d6aff244c6c191301ac93c87e8943f4349f01e78a64d/zc.buildout-1.0.0b29-py2.5.egg" } ], "1.0.0b30": [ { "comment_text": "", "digests": { "md5": "7e3ef2dc326e4cfb645f65f10f65fcb1", "sha256": "ae6cf3fbf0728be5b404c92995f4c1f37ad76e2b182f56331fae9b2ff4127a90" }, "downloads": -1, "filename": "zc.buildout-1.0.0b30-py2.3.egg", "has_sig": false, "md5_digest": "7e3ef2dc326e4cfb645f65f10f65fcb1", "packagetype": "bdist_egg", "python_version": "2.3", "requires_python": null, "size": 729610, "upload_time": "2007-08-20T21:52:03", "url": "https://files.pythonhosted.org/packages/8d/a7/b280a5d65b3bb72e1424b916a1e68273edc20393d70c8a733ba76ae4a210/zc.buildout-1.0.0b30-py2.3.egg" }, { "comment_text": "", "digests": { "md5": "07dafe65c5941b45ab6ff5f9dd20d4a1", "sha256": "b076c266b613369df021f5bf88a1695d08c928ce9b3bdcadc2846232f55b2921" }, "downloads": -1, "filename": "zc.buildout-1.0.0b30-py2.4.egg", "has_sig": false, "md5_digest": "07dafe65c5941b45ab6ff5f9dd20d4a1", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 177003, "upload_time": "2007-08-20T21:50:50", "url": "https://files.pythonhosted.org/packages/74/5d/10ede9777228e36d8e987d2fd2728b256ba71c18e5abb0f48469946c1d6d/zc.buildout-1.0.0b30-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "eed8641412071fdaff44e0043f1c54cb", "sha256": "124c7ceadaa3646ed9501f58e1bf5c0acf8d1ebeb123d43e2cea254e22bd79b6" }, "downloads": -1, "filename": "zc.buildout-1.0.0b30-py2.5.egg", "has_sig": false, "md5_digest": "eed8641412071fdaff44e0043f1c54cb", "packagetype": "bdist_egg", "python_version": "2.5", "requires_python": null, "size": 175750, "upload_time": "2007-08-20T21:51:50", "url": "https://files.pythonhosted.org/packages/f6/75/da445223a310053bf4b15001a4e98d3c58103ab7f12268f8023fe841e728/zc.buildout-1.0.0b30-py2.5.egg" } ], "1.0.0b31": [ { "comment_text": "", "digests": { "md5": "53918ee1d2f219812885fb2a6a96559a", "sha256": "ae99df6f28529f61bb046aaf9ca96702b7c4841dbd0feae4dcafb24a9e2c4f06" }, "downloads": -1, "filename": "zc.buildout-1.0.0b31.tar.gz", "has_sig": false, "md5_digest": "53918ee1d2f219812885fb2a6a96559a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 177794, "upload_time": "2007-11-01T12:56:38", "url": "https://files.pythonhosted.org/packages/c3/dc/b01cec22d68098a1abe2c86faf63a9b41e11d4b32fc36d7057a158461f19/zc.buildout-1.0.0b31.tar.gz" } ], "1.0.1": [ { "comment_text": "", "digests": { "md5": "438748533cdf043791c98799ed4b8cd3", "sha256": "84243c24ee66e7cd967654fc12bf87beef9d186127a84300538521bf4a67b1df" }, "downloads": -1, "filename": "zc.buildout-1.0.1.tar.gz", "has_sig": false, "md5_digest": "438748533cdf043791c98799ed4b8cd3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 190949, "upload_time": "2008-04-02T15:05:43", "url": "https://files.pythonhosted.org/packages/22/57/b8e675e58ed436caa3311ab4a0b85fff4afb3fce44529cf37d5411226521/zc.buildout-1.0.1.tar.gz" } ], "1.0.2": [ { "comment_text": "", "digests": { "md5": "f8a2da96f79fb3d82b15fc87737abb49", "sha256": "6330e3a61c8bd684bd6bedbe0ffa5e22737db61b72b6c9c2b9cb5f34c2df51aa" }, "downloads": -1, "filename": "zc.buildout-1.0.2-py2.4.egg", "has_sig": false, "md5_digest": "f8a2da96f79fb3d82b15fc87737abb49", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 176193, "upload_time": "2008-05-13T18:55:15", "url": "https://files.pythonhosted.org/packages/53/05/897d7d49398aad91d6a936b2019c69bb058aa6c497d902e418c4d3a00d11/zc.buildout-1.0.2-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "5009a893f0e0677cbb32a48aad56e1c7", "sha256": "0e76ed4a737fc4576ebe172b04d5e0043a127255b6d64a29f14981a5bfda19a9" }, "downloads": -1, "filename": "zc.buildout-1.0.2.tar.gz", "has_sig": false, "md5_digest": "5009a893f0e0677cbb32a48aad56e1c7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 191472, "upload_time": "2008-05-13T18:55:18", "url": "https://files.pythonhosted.org/packages/2a/d4/f54fcc0e3e94cc6ab9561d89b74c9d948443d09dfc661f378cf1338e3039/zc.buildout-1.0.2.tar.gz" } ], "1.0.3": [ { "comment_text": "", "digests": { "md5": "13b15274ad84c4e4ab794aff2a468654", "sha256": "6ba212acab2d22bb8487479bb38cffbb63899f6448e2a266184d25722b676700" }, "downloads": -1, "filename": "zc.buildout-1.0.3-py2.4.egg", "has_sig": false, "md5_digest": "13b15274ad84c4e4ab794aff2a468654", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 176428, "upload_time": "2008-06-01T08:02:11", "url": "https://files.pythonhosted.org/packages/d0/c1/0ab22a705eb7e1313d0e14053aec7d88b0ef542acf676dd2002705bb0973/zc.buildout-1.0.3-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "c331bc9c9061a097f76b16e35f74c929", "sha256": "99e285b88109e8aeda2966d003069bf57d478ed310e71139ec79f9d62eceaa78" }, "downloads": -1, "filename": "zc.buildout-1.0.3.tar.gz", "has_sig": false, "md5_digest": "c331bc9c9061a097f76b16e35f74c929", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 191747, "upload_time": "2008-06-01T08:02:13", "url": "https://files.pythonhosted.org/packages/67/9f/8e4f71a59665caee46958c75af4e4081f816f9d53f2215ee8d3aeab491bd/zc.buildout-1.0.3.tar.gz" } ], "1.0.4": [ { "comment_text": "", "digests": { "md5": "1ef939db92ebcc7382523cc9954b8c87", "sha256": "8c701fde4f0739cd56906500aadc71c87190a89f1f3623a7a2ac77fe15318d0b" }, "downloads": -1, "filename": "zc.buildout-1.0.4-py2.4.egg", "has_sig": false, "md5_digest": "1ef939db92ebcc7382523cc9954b8c87", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 181099, "upload_time": "2008-06-10T04:47:46", "url": "https://files.pythonhosted.org/packages/ac/75/abac38e9e6cd7434b067185721c9a456c2e1a1c74decb0b9f6c04f9ffe8a/zc.buildout-1.0.4-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "4fb4635ba80be5e21472c0849ada6633", "sha256": "a673879c9fa8b2f26d39533edf7bb4e72623e14dd20a08ffed5762ac40e7f349" }, "downloads": -1, "filename": "zc.buildout-1.0.4.tar.gz", "has_sig": false, "md5_digest": "4fb4635ba80be5e21472c0849ada6633", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 196545, "upload_time": "2008-06-10T04:47:49", "url": "https://files.pythonhosted.org/packages/af/60/e2c9bf85a9f1415b09d3cae715e8635843017f41b4820f01200520a0f153/zc.buildout-1.0.4.tar.gz" } ], "1.0.5": [ { "comment_text": "", "digests": { "md5": "31a640bdbf3184130dfdbb831df17744", "sha256": "e38ff8c2f90406fc068124329a8f03d263ac871f8730e9873fd56f78828491c5" }, "downloads": -1, "filename": "zc.buildout-1.0.5-py2.4.egg", "has_sig": false, "md5_digest": "31a640bdbf3184130dfdbb831df17744", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 181147, "upload_time": "2008-06-10T09:00:43", "url": "https://files.pythonhosted.org/packages/91/61/912333c88edeeb494d9ea1fb416a5a1680e896267e637c48e84b8ce2a348/zc.buildout-1.0.5-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "29c2a2ae5df3ca585152535bc5885a34", "sha256": "e39a41ff4e2e7fee96da8c2d218cb19cce233938db753159f68db15b97b548b7" }, "downloads": -1, "filename": "zc.buildout-1.0.5.tar.gz", "has_sig": false, "md5_digest": "29c2a2ae5df3ca585152535bc5885a34", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 196640, "upload_time": "2008-06-10T09:00:46", "url": "https://files.pythonhosted.org/packages/86/b8/5d2e67c7ffdb84eac5bd0235231eb4da9f9486805a39b84cfacfd81cde57/zc.buildout-1.0.5.tar.gz" } ], "1.0.6": [ { "comment_text": "", "digests": { "md5": "448c3a50ad6b78dbda3ede3ddb5e54d1", "sha256": "69cdb4bbde8eb833d1004f5c199ebb5009cf391ba292f6beba5ac72c3c298c19" }, "downloads": -1, "filename": "zc.buildout-1.0.6-py2.4.egg", "has_sig": false, "md5_digest": "448c3a50ad6b78dbda3ede3ddb5e54d1", "packagetype": "bdist_egg", "python_version": "2.4", "requires_python": null, "size": 181945, "upload_time": "2008-06-13T21:17:38", "url": "https://files.pythonhosted.org/packages/85/e6/44947b6b925302aadf83650c340d881bd9a5cf2ffa1dd0955fa2d98cbe36/zc.buildout-1.0.6-py2.4.egg" }, { "comment_text": "", "digests": { "md5": "b27b19c6ff0af82e88d0afea0780423e", "sha256": "4ca7c66b341146ad000736fccdfa9c6b8b2eaeec0e5c8e3760b9ab908b255922" }, "downloads": -1, "filename": "zc.buildout-1.0.6.tar.gz", "has_sig": false, "md5_digest": "b27b19c6ff0af82e88d0afea0780423e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 204196, "upload_time": "2008-06-13T21:17:34", "url": "https://files.pythonhosted.org/packages/fe/6a/df584ab8d5d8fe90d888a1b7ce4685c95d6a8cad4ed2be4662a11d756011/zc.buildout-1.0.6.tar.gz" } ], "1.1.0": [ { "comment_text": "", "digests": { "md5": "e3fd404ebb1e9040d1a8f4f27f50df51", "sha256": "699a165c740bff0fac4c5efe710544f1561c2b0744643f3bd9afc2cf0927b033" }, "downloads": -1, "filename": "zc.buildout-1.1.0.tar.gz", "has_sig": false, "md5_digest": "e3fd404ebb1e9040d1a8f4f27f50df51", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 202060, "upload_time": "2008-07-19T15:03:28", "url": "https://files.pythonhosted.org/packages/50/05/eae3f6b19a94981dacb961326e954a14c03445a75f934a9c05451a6b7751/zc.buildout-1.1.0.tar.gz" } ], "1.1.1": [ { "comment_text": "", "digests": { "md5": "cfe272c6c7d0a52dc6f70443cdd308be", "sha256": "2a41289e79b0c88b3e4dc734e0f1e4c19acbc235163d77bc91e584712e8d359b" }, "downloads": -1, "filename": "zc.buildout-1.1.1.tar.gz", "has_sig": false, "md5_digest": "cfe272c6c7d0a52dc6f70443cdd308be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 205601, "upload_time": "2008-07-28T21:50:13", "url": "https://files.pythonhosted.org/packages/4d/f3/15068269c8be2ec93bbaf5da60f3db89283d183108e438c256cbc75381d7/zc.buildout-1.1.1.tar.gz" } ], "1.1.2": [ { "comment_text": "", "digests": { "md5": "0fb5b37c03179c045180789739373b40", "sha256": "9c5092062c79e63b77d44473e4e7da3b38339ae8e4123df257336e963f2d938a" }, "downloads": -1, "filename": "zc.buildout-1.1.2.tar.gz", "has_sig": false, "md5_digest": "0fb5b37c03179c045180789739373b40", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 211586, "upload_time": "2009-03-16T18:01:11", "url": "https://files.pythonhosted.org/packages/d2/38/b69ab68b6cf473fad26a3b92ee65f9a5339d5c079025866befdd071a1554/zc.buildout-1.1.2.tar.gz" } ], "1.2.0": [ { "comment_text": "", "digests": { "md5": "be78a56ccdf76fc906d404888da76551", "sha256": "27460036c38ff9d95ddf8fb6cd3dba17f10ce3bae687529664dea1a1188415ad" }, "downloads": -1, "filename": "zc.buildout-1.2.0.tar.gz", "has_sig": false, "md5_digest": "be78a56ccdf76fc906d404888da76551", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 213971, "upload_time": "2009-03-17T15:47:33", "url": "https://files.pythonhosted.org/packages/13/33/7de188fe14a5b04bc070019e6eb32a6211aa36b1e3cff38652f7fd84fa0a/zc.buildout-1.2.0.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "e81b0c75be7bfbd640978f75e773f904", "sha256": "e1c8b53f55d265508f150ac4e462d9151f893004d153c5863ca6195485155079" }, "downloads": -1, "filename": "zc.buildout-1.2.1.tar.gz", "has_sig": false, "md5_digest": "e81b0c75be7bfbd640978f75e773f904", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 213142, "upload_time": "2009-03-18T19:46:31", "url": "https://files.pythonhosted.org/packages/cd/e1/7561a10a9f26798eef0a8de5cc285a4186a4777b517a2e38a95d0a943b91/zc.buildout-1.2.1.tar.gz" } ], "1.3.0": [ { "comment_text": "", "digests": { "md5": "57b0d7da74e4a98e11695ed2be9a7d55", "sha256": "5203d5f5e621814d8ba2dd2cfa7a0b9ef5083982990df500446b29f2a7ad6415" }, "downloads": -1, "filename": "zc.buildout-1.3.0.tar.gz", "has_sig": false, "md5_digest": "57b0d7da74e4a98e11695ed2be9a7d55", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 215648, "upload_time": "2009-06-22T20:44:42", "url": "https://files.pythonhosted.org/packages/17/00/75304da758da559962bdbb40e248d5851a97765e02019499b0653f9bee04/zc.buildout-1.3.0.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "303204541504652b981a523c58e26861", "sha256": "b8a0b5d8a80f0fb7d931293954693918b749dcf0328bcc46efc931e429bc4587" }, "downloads": -1, "filename": "zc.buildout-1.3.1.tar.gz", "has_sig": false, "md5_digest": "303204541504652b981a523c58e26861", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 217394, "upload_time": "2009-08-13T00:32:16", "url": "https://files.pythonhosted.org/packages/fc/3c/3fd91b5844d00d429e76de0f51e0d2c136d8557ca53517f9b16837550100/zc.buildout-1.3.1.tar.gz" } ], "1.4.0": [ { "comment_text": "", "digests": { "md5": "649603b825a96d454a9d8ed096cf05e4", "sha256": "9a45fa9fb67db128ba0ad9be1eda596e1e5eed236f46fe0fb24094b6e494a72b" }, "downloads": -1, "filename": "zc.buildout-1.4.0.tar.gz", "has_sig": false, "md5_digest": "649603b825a96d454a9d8ed096cf05e4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 243962, "upload_time": "2009-08-27T16:58:49", "url": "https://files.pythonhosted.org/packages/d9/b3/784d30da77dd3eeac3455423d2324593bf7962ea9a42704314727de3b75b/zc.buildout-1.4.0.tar.gz" } ], "1.4.0dev": [ { "comment_text": "", "digests": { "md5": "a1668e6fa337659459c8d990467e8683", "sha256": "0b658f71ab3700197384be6493a3a89b7cf20a26ac6c49cb4472f1fdec194b88" }, "downloads": -1, "filename": "zc.buildout-1.4.0dev.tar.gz", "has_sig": false, "md5_digest": "a1668e6fa337659459c8d990467e8683", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 243950, "upload_time": "2009-08-27T14:25:43", "url": "https://files.pythonhosted.org/packages/51/31/f5664ce478ba258186e81a6016b0484fd0713b7350b07f5b529de54ef9d3/zc.buildout-1.4.0dev.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "b710b535a458724551f2676cd92f4246", "sha256": "427f7beb29e3f9ca20ebb9b61655b9ade6d1f7ce02994ea97e4c663c4aee739e" }, "downloads": -1, "filename": "zc.buildout-1.4.1.tar.gz", "has_sig": false, "md5_digest": "b710b535a458724551f2676cd92f4246", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 245359, "upload_time": "2009-08-29T00:53:04", "url": "https://files.pythonhosted.org/packages/7f/5c/8b76544a8ce455922f24e708067a34011607c009132563c4ccfb0d6172bb/zc.buildout-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "162cc5a1b5b284ac656c6ebeaf88ecf3", "sha256": "5db99f18d24d7e124b04c142316590419ce20de4d16b205227bc416e59fd9cb6" }, "downloads": -1, "filename": "zc.buildout-1.4.2.tar.gz", "has_sig": false, "md5_digest": "162cc5a1b5b284ac656c6ebeaf88ecf3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 248438, "upload_time": "2009-11-01T20:34:05", "url": "https://files.pythonhosted.org/packages/b0/c5/0b84d53be3d40efc1538c6805d9a1b715c7137e4bfe917bac1572794e904/zc.buildout-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "527cece8ca7ee087dc4e23360bbd9bcb", "sha256": "539f740e5b42044866f76119296ead095cf26e64d6d02b817c160bd948509226" }, "downloads": -1, "filename": "zc.buildout-1.4.3.tar.gz", "has_sig": false, "md5_digest": "527cece8ca7ee087dc4e23360bbd9bcb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 249735, "upload_time": "2009-12-10T17:16:43", "url": "https://files.pythonhosted.org/packages/84/65/1d3601dab2bc3c539b417e42ccfb249c843632044afd27cc18c1e96b526a/zc.buildout-1.4.3.tar.gz" } ], "1.4.4": [ { "comment_text": "", "digests": { "md5": "33a37eaed2f4f01801db73a4ea1496f7", "sha256": "fcc930f3366214fbe0eea6dbb1a7ea00703e8e2d65ec1c375d4d7df967030445" }, "downloads": -1, "filename": "zc.buildout-1.4.4.tar.gz", "has_sig": false, "md5_digest": "33a37eaed2f4f01801db73a4ea1496f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 253278, "upload_time": "2010-08-20T16:22:33", "url": "https://files.pythonhosted.org/packages/2b/62/dacfee027cdcd9917d93facbb8325090cc0ec288af454a424392627dd5be/zc.buildout-1.4.4.tar.gz" } ], "1.5.0": [ { "comment_text": "", "digests": { "md5": "42c00a3bb37d386bd5379c74eaa7a7b1", "sha256": "c03acc8cf3f5952ca1869ba5ac84d9cf9fa1d0ce5ac9a1926f4084a48dcbbbd3" }, "downloads": -1, "filename": "zc.buildout-1.5.0.tar.gz", "has_sig": false, "md5_digest": "42c00a3bb37d386bd5379c74eaa7a7b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 323380, "upload_time": "2010-08-23T17:39:03", "url": "https://files.pythonhosted.org/packages/b6/6a/d42696d3fc13136eca713472d4498ddf19f6365c7ddb37456a789790488e/zc.buildout-1.5.0.tar.gz" } ], "1.5.0b1": [ { "comment_text": "", "digests": { "md5": "f4377ceb9892dcd7c4f17c6eeaf4bf6d", "sha256": "f681f49420eb023efeee8703d4ac07ce296b82434db299a2a658f143e7fc999e" }, "downloads": -1, "filename": "zc.buildout-1.5.0b1.tar.gz", "has_sig": false, "md5_digest": "f4377ceb9892dcd7c4f17c6eeaf4bf6d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 303014, "upload_time": "2010-04-30T04:06:11", "url": "https://files.pythonhosted.org/packages/fc/94/4262cecaba976e468e0ed7a772cec6bbeb2e146603e7fd2c7f843199529b/zc.buildout-1.5.0b1.tar.gz" } ], "1.5.0b2": [ { "comment_text": "", "digests": { "md5": "fd9585bb1e0e7956cdbd4bf5b2083ce6", "sha256": "134d6f3beabfda53cc18c8a53e570b8deb8d19301b7ea972c57c906f2c5f9baf" }, "downloads": -1, "filename": "zc.buildout-1.5.0b2.tar.gz", "has_sig": false, "md5_digest": "fd9585bb1e0e7956cdbd4bf5b2083ce6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 251299, "upload_time": "2010-04-30T23:34:00", "url": "https://files.pythonhosted.org/packages/bf/2a/433dcf7f4d06326e2be8e9b3f6ac2ce0de6d383dd15be5aa223fd0063f54/zc.buildout-1.5.0b2.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "ea555a3a3ab0c8101f6041665d8f21d4", "sha256": "260abac196555fe40571c427274cc2e730b8de536f625db5e84b70f40e23cc68" }, "downloads": -1, "filename": "zc.buildout-1.5.1.tar.gz", "has_sig": false, "md5_digest": "ea555a3a3ab0c8101f6041665d8f21d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 326087, "upload_time": "2010-08-29T22:57:43", "url": "https://files.pythonhosted.org/packages/8b/80/4f701b0262a4eea7919d40ce2634a6a7de3d65b32b01ffd936fcc4439f38/zc.buildout-1.5.1.tar.gz" } ], "1.5.2": [ { "comment_text": "", "digests": { "md5": "87f7b3f8d13926c806242fd5f6fe36f7", "sha256": "0ac5a325d3ffbc5a988fb3ba87f4159d4769cc73e3331cb5234edc8839b6506b" }, "downloads": -1, "filename": "zc.buildout-1.5.2.tar.gz", "has_sig": false, "md5_digest": "87f7b3f8d13926c806242fd5f6fe36f7", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 331673, "upload_time": "2010-10-11T09:39:03", "url": "https://files.pythonhosted.org/packages/27/57/7f9082fb7837bc8cace7f0bf1b0ab38c00701566bd85c600df24360fef63/zc.buildout-1.5.2.tar.gz" } ], "1.6.0": [ { "comment_text": "", "digests": { "md5": "9039d0552d0782682f7b1b95c732b5f0", "sha256": "f3f071b65884de728c53d7d85c3f669b97189622ca41a2671006969b81f5f3e8" }, "downloads": -1, "filename": "zc.buildout-1.6.0.tar.gz", "has_sig": false, "md5_digest": "9039d0552d0782682f7b1b95c732b5f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 283826, "upload_time": "2012-08-16T03:24:17", "url": "https://files.pythonhosted.org/packages/82/c3/1e9a4e02776b65ec6ba866bac6232d340ee7228d4edd27c2c6f3e706cef6/zc.buildout-1.6.0.tar.gz" } ], "1.6.1": [ { "comment_text": "", "digests": { "md5": "c7f58243933b2e790d353b21274c5549", "sha256": "dc0cfa2b8c0426082bb8b089350af27a55b3d6a4ed6f252591d023c41895f554" }, "downloads": -1, "filename": "zc.buildout-1.6.1.tar.gz", "has_sig": false, "md5_digest": "c7f58243933b2e790d353b21274c5549", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 284116, "upload_time": "2012-08-18T18:44:57", "url": "https://files.pythonhosted.org/packages/25/c4/339df94f2807bd77c3f3938fd0ea6fcfdcdbb001ac0f83a5d78fb86f800c/zc.buildout-1.6.1.tar.gz" } ], "1.6.2": [ { "comment_text": "", "digests": { "md5": "40f2b258de3d90d743427ac41c425257", "sha256": "fb2eeb458cd9ac38d23731cd9bd2d6b854560dd3cda149cfc49396c6c528e1b3" }, "downloads": -1, "filename": "zc.buildout-1.6.2.tar.gz", "has_sig": false, "md5_digest": "40f2b258de3d90d743427ac41c425257", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 284472, "upload_time": "2012-08-22T00:44:40", "url": "https://files.pythonhosted.org/packages/f1/96/6585ded4b86020f5675316b5a490d9dfb49672ed8aaa5ca8cec5aa179b1a/zc.buildout-1.6.2.tar.gz" } ], "1.6.3": [ { "comment_text": "", "digests": { "md5": "1523662da2cc92f10d61b48c971e8713", "sha256": "023a98e72a0d33b404edb7eb5b09d05a5d74d8d44f05b668c27cc520372cd572" }, "downloads": -1, "filename": "zc.buildout-1.6.3.tar.gz", "has_sig": false, "md5_digest": "1523662da2cc92f10d61b48c971e8713", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 284957, "upload_time": "2012-08-22T15:37:24", "url": "https://files.pythonhosted.org/packages/a0/db/89de50ecb00afc9532a448c27a437abe18c16bd5fc9f82a20fa4bfe023cf/zc.buildout-1.6.3.tar.gz" } ], "1.7.0": [ { "comment_text": "", "digests": { "md5": "4e3b521600e475c56a0a66459a5fc7bb", "sha256": "8607bb5fb25d0d32837b3cda4215afbcfaf9c70972f852eed071dc5802c054cc" }, "downloads": -1, "filename": "zc.buildout-1.7.0.tar.gz", "has_sig": false, "md5_digest": "4e3b521600e475c56a0a66459a5fc7bb", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 288618, "upload_time": "2013-01-11T16:51:07", "url": "https://files.pythonhosted.org/packages/b6/6e/a721b84f934219b6ca30221cd92288051f0df4e5974729281807463070bf/zc.buildout-1.7.0.tar.gz" } ], "1.7.0b1": [], "1.7.0b2": [], "1.7.1": [ { "comment_text": "", "digests": { "md5": "8834a21586bf2be53dc412002241a996", "sha256": "a5c2fafa4d073ad3dabec267c44a996cbc624700a9a49467cd6b1ef63d35e029" }, "downloads": -1, "filename": "zc.buildout-1.7.1.tar.gz", "has_sig": false, "md5_digest": "8834a21586bf2be53dc412002241a996", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 288697, "upload_time": "2013-02-21T12:59:51", "url": "https://files.pythonhosted.org/packages/9c/24/b64b142285eb890ab8501235606facc60eb0593647404864b670de8e149d/zc.buildout-1.7.1.tar.gz" } ], "2.0.0": [ { "comment_text": "", "digests": { "md5": "143ea140113998504c7ce7078edf6389", "sha256": "a62de9d1af269990e90891e745c4756160163d2d40b6d56119ece63bbbb0ba86" }, "downloads": -1, "filename": "zc.buildout-2.0.0.tar.gz", "has_sig": false, "md5_digest": "143ea140113998504c7ce7078edf6389", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 232062, "upload_time": "2013-02-10T18:18:09", "url": "https://files.pythonhosted.org/packages/09/33/a202eb48dfc2e96a8dbd354c95886be2d3e0676440679c9d1341959f71bc/zc.buildout-2.0.0.tar.gz" } ], "2.0.0a1": [ { "comment_text": "", "digests": { "md5": "6723754a7870d11bd6d228a99f3127c2", "sha256": "eb84bc2417b5ed0147825271feac193dd067f57f84746d500b96e79e6fde7ccf" }, "downloads": -1, "filename": "zc.buildout-2.0.0a1-py3.2.egg", "has_sig": false, "md5_digest": "6723754a7870d11bd6d228a99f3127c2", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 306948, "upload_time": "2011-04-30T14:13:21", "url": "https://files.pythonhosted.org/packages/07/87/5a6851d2665f53546bef623f0d0d00fdbad55e5592a009c6a294d681b932/zc.buildout-2.0.0a1-py3.2.egg" }, { "comment_text": "", "digests": { "md5": "c068e941c9a3e60810c47f74c31ea473", "sha256": "e6dd221ad692ad32b0b8a0fc0fd9d721ffb47cac8aa06783818199af7c9c8beb" }, "downloads": -1, "filename": "zc.buildout-2.0.0a1-py3.3.egg", "has_sig": false, "md5_digest": "c068e941c9a3e60810c47f74c31ea473", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 239375, "upload_time": "2011-12-08T15:36:44", "url": "https://files.pythonhosted.org/packages/01/27/0959e61a00ef61778c5f081be13004d689c72245509d541517663c28156a/zc.buildout-2.0.0a1-py3.3.egg" } ], "2.0.0a2": [ { "comment_text": "", "digests": { "md5": "cf8b61dbd640654daa9fedfdd791fafe", "sha256": "dc1aff79cb5b07f1ab20cae165d08f307c5cbce43bc1c4005dbf8a7739bcfb67" }, "downloads": -1, "filename": "zc.buildout-2.0.0a2-py3.2.egg", "has_sig": true, "md5_digest": "cf8b61dbd640654daa9fedfdd791fafe", "packagetype": "bdist_egg", "python_version": "3.2", "requires_python": null, "size": 233859, "upload_time": "2012-05-03T23:22:21", "url": "https://files.pythonhosted.org/packages/89/d8/b3f0bbaeea0d2173dfed100c0e558f648271aa358ea795070280ec7fa298/zc.buildout-2.0.0a2-py3.2.egg" } ], "2.0.0a3": [], "2.0.0a4": [], "2.0.0a5": [], "2.0.0a6": [], "2.0.0a7": [], "2.0.0b1": [], "2.0.0b2": [], "2.0.1": [ { "comment_text": "", "digests": { "md5": "393380126d8c094a32df556ec0abd506", "sha256": "b9fc1ea9f8da076f1e9a671102a3c701a57ee98686a87565cfaa40a70b317c65" }, "downloads": -1, "filename": "zc.buildout-2.0.1.tar.gz", "has_sig": false, "md5_digest": "393380126d8c094a32df556ec0abd506", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 234329, "upload_time": "2013-02-16T22:18:27", "url": "https://files.pythonhosted.org/packages/b6/03/68b4a7c80fecd9f44c0174aed9146df1d41e6064040a4db0c9d4ffac3014/zc.buildout-2.0.1.tar.gz" } ], "2.1.0": [ { "comment_text": "", "digests": { "md5": "1f0ec4b9dc663b444107edf9b7f811a4", "sha256": "a29957e3d40fd22b164ff37be1e9f3889f4ad8aa790ff4b423790b548ff601d1" }, "downloads": -1, "filename": "zc.buildout-2.1.0.tar.gz", "has_sig": false, "md5_digest": "1f0ec4b9dc663b444107edf9b7f811a4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 251102, "upload_time": "2013-03-23T21:19:52", "url": "https://files.pythonhosted.org/packages/02/83/f6054de258c30344dd34c9aa797c5793e32842b84eadd31d45df4906be87/zc.buildout-2.1.0.tar.gz" } ], "2.1.1": [ { "comment_text": "", "digests": { "md5": "ff3a62f5fdc4d65fc7f2686d7c758326", "sha256": "46b8bfeb6c6dc51689e3808e7af6b145963805a68fe0a41eb4ad7c564803b3f1" }, "downloads": -1, "filename": "zc.buildout-2.1.1.tar.gz", "has_sig": false, "md5_digest": "ff3a62f5fdc4d65fc7f2686d7c758326", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 251336, "upload_time": "2013-06-26T11:38:17", "url": "https://files.pythonhosted.org/packages/24/7e/f39d3d88890789524ff3a6db37fad5bfd2022207fa21763631b979e45ad6/zc.buildout-2.1.1.tar.gz" } ], "2.10.0": [ { "comment_text": "", "digests": { "md5": "c6c6bfe595d83be2e29c1c7b17df0268", "sha256": "a61b5de51ad741cdb826f8bfd1b0faad2512434b0b8945ae6493c7a1d9ec9370" }, "downloads": -1, "filename": "zc.buildout-2.10.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c6c6bfe595d83be2e29c1c7b17df0268", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 155000, "upload_time": "2017-12-04T10:35:33", "url": "https://files.pythonhosted.org/packages/6f/e0/6d49af55c9ef2893429e668d88cd54b955f804869e703ac241c0ea5b49c7/zc.buildout-2.10.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b833d0a9d69835b883fda5553c66e9ce", "sha256": "b8a159cf23534638016d90125e28053344d337f6a20b90b97f82bacb8d039103" }, "downloads": -1, "filename": "zc.buildout-2.10.0.tar.gz", "has_sig": false, "md5_digest": "b833d0a9d69835b883fda5553c66e9ce", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162731, "upload_time": "2017-12-04T10:35:35", "url": "https://files.pythonhosted.org/packages/97/1c/9f6fee7e3842fde2d3f3c6276211ec4c1bd80c60356c10905e676277347c/zc.buildout-2.10.0.tar.gz" } ], "2.11.0": [ { "comment_text": "", "digests": { "md5": "5b457da4fb0d0b031fef49946d472ff0", "sha256": "a6e482e7f26d93445dbdd4a535a2661ebd943b837c8a33601114645f64937c14" }, "downloads": -1, "filename": "zc.buildout-2.11.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5b457da4fb0d0b031fef49946d472ff0", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 155225, "upload_time": "2018-01-21T16:16:57", "url": "https://files.pythonhosted.org/packages/19/81/4d51dbd718d476b9af2cacdbd3c3d6c362e7baeda156181a4a0d574127b5/zc.buildout-2.11.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "546df99020e83f6c69a4a10e44d234ab", "sha256": "092b0a147d5fb4e79ee0afde665570f85738e714463854f9e4f7f38d0b27ea82" }, "downloads": -1, "filename": "zc.buildout-2.11.0.tar.gz", "has_sig": false, "md5_digest": "546df99020e83f6c69a4a10e44d234ab", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163053, "upload_time": "2018-01-21T16:16:59", "url": "https://files.pythonhosted.org/packages/0e/78/c473fd84c4ed95be658ab05b9819d35a699484e34c8897f9e9e53b4e96b3/zc.buildout-2.11.0.tar.gz" } ], "2.11.1": [ { "comment_text": "", "digests": { "md5": "fed494abcb9ae38f8ae4b58e67cf6711", "sha256": "727bf08f5aa620bd1646b12ff76696967b441c57339eb818666bf29b58ba1254" }, "downloads": -1, "filename": "zc.buildout-2.11.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "fed494abcb9ae38f8ae4b58e67cf6711", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 155440, "upload_time": "2018-03-01T21:43:22", "url": "https://files.pythonhosted.org/packages/5b/75/69aedae298226f8f3033bd81f4a6883b2d4a964230bd722654304ff61139/zc.buildout-2.11.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4b8c1675e6128f02e6176416c3d8e125", "sha256": "08017dcd8f4b60b48b7d830da835a9350c07e7f383fa56d45925ab5144400281" }, "downloads": -1, "filename": "zc.buildout-2.11.1.tar.gz", "has_sig": false, "md5_digest": "4b8c1675e6128f02e6176416c3d8e125", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163322, "upload_time": "2018-03-01T21:43:24", "url": "https://files.pythonhosted.org/packages/90/6c/27eb2701cc5c5768f5600391da6877ed6aac0cd618e5f8326bbcc501b9fb/zc.buildout-2.11.1.tar.gz" } ], "2.11.2": [ { "comment_text": "", "digests": { "md5": "5caa08f3895c6e4b722a926c4d19082e", "sha256": "eadab565f8f73385aa06cec0bb3dcaea0bbc8dba79959e49b82ce759795e3986" }, "downloads": -1, "filename": "zc.buildout-2.11.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "5caa08f3895c6e4b722a926c4d19082e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 155530, "upload_time": "2018-03-19T18:29:33", "url": "https://files.pythonhosted.org/packages/25/ca/6736535c69a7408dbf95f1b48ddf874c11b0e4fda260d97b4d417b9cf96a/zc.buildout-2.11.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "1e22e956cab3dc977d25b58c3e17f586", "sha256": "e304f3604a4235e896e94ea79230cfb9c0bc54569f04d5c6c4b49cc9dc4fdbf6" }, "downloads": -1, "filename": "zc.buildout-2.11.2.tar.gz", "has_sig": false, "md5_digest": "1e22e956cab3dc977d25b58c3e17f586", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163450, "upload_time": "2018-03-19T18:29:36", "url": "https://files.pythonhosted.org/packages/39/f5/d216dbb9ec8fa7b386615b4ebc63f8072dee3abab865b7b00ff4dfe370fb/zc.buildout-2.11.2.tar.gz" } ], "2.11.3": [ { "comment_text": "", "digests": { "md5": "f95f52a68ed55919d1f286b0fa8eae48", "sha256": "7e191ae6aaca09c844c4fbe93774bc003eb75d3a9c8c6fd87cb756e8028a48d4" }, "downloads": -1, "filename": "zc.buildout-2.11.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f95f52a68ed55919d1f286b0fa8eae48", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 155539, "upload_time": "2018-04-13T14:03:17", "url": "https://files.pythonhosted.org/packages/ff/9c/08a539e878a610b56948af8e391b9eb04aaa25a217faf6d0db3482368dd7/zc.buildout-2.11.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "f4f2eb75c42cb5d52c5fc591595cb325", "sha256": "f7fde2cde7b937f67e52a3e94b76f9294b73c1e9bb698430e96778f3f735544c" }, "downloads": -1, "filename": "zc.buildout-2.11.3.tar.gz", "has_sig": false, "md5_digest": "f4f2eb75c42cb5d52c5fc591595cb325", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 163542, "upload_time": "2018-04-13T14:03:19", "url": "https://files.pythonhosted.org/packages/03/d3/62bc2b6137fb3092d7743070bc11a57c2a012196ddea3d6a76e39f205d97/zc.buildout-2.11.3.tar.gz" } ], "2.11.4": [ { "comment_text": "", "digests": { "md5": "7502d95d71be137e5f134925716bbec4", "sha256": "be8cb48593fbf9a911f31636fa66af23d551df451899dbd2d3aacf622d58e68b" }, "downloads": -1, "filename": "zc.buildout-2.11.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "7502d95d71be137e5f134925716bbec4", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 157118, "upload_time": "2018-05-14T21:56:48", "url": "https://files.pythonhosted.org/packages/5b/87/e6f32bb65bc039aabbf7bc70e10826559e24664fdd395653ffb867e983d1/zc.buildout-2.11.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e50cee274c794415250dc2cfd9127d2d", "sha256": "20b22d9c99c99909b6b2dc679e8acd9e1fcf9f58e23f336d8b2c5be70617fbb2" }, "downloads": -1, "filename": "zc.buildout-2.11.4.tar.gz", "has_sig": false, "md5_digest": "e50cee274c794415250dc2cfd9127d2d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 165195, "upload_time": "2018-05-14T21:56:58", "url": "https://files.pythonhosted.org/packages/9c/ff/565ad4e39310910ce437656fc2eafa8a1991fda39b732afe7d6b82352aad/zc.buildout-2.11.4.tar.gz" } ], "2.11.5": [ { "comment_text": "", "digests": { "md5": "6fa6afb28bb23b2367b0e63c9006156c", "sha256": "055f899b69b93da1f721ac17f16b9e94a7d7305cebd75f8de40ebac45024659f" }, "downloads": -1, "filename": "zc.buildout-2.11.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6fa6afb28bb23b2367b0e63c9006156c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 149512, "upload_time": "2018-06-19T09:45:02", "url": "https://files.pythonhosted.org/packages/f8/8f/c5f70c96a4f7b3890410c4434ebda9664ad8ae2a4a587b6c6425b428655f/zc.buildout-2.11.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "5e815a55a6a64da1fc689683f23d2e02", "sha256": "537a22715d82362cddd811da08d11a31d30d5161ce7994b208bd85ebb348d122" }, "downloads": -1, "filename": "zc.buildout-2.11.5.tar.gz", "has_sig": false, "md5_digest": "5e815a55a6a64da1fc689683f23d2e02", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 160841, "upload_time": "2018-06-19T09:45:04", "url": "https://files.pythonhosted.org/packages/01/96/98a216dfd882a729e31d4318af6e1c1af10923084f81f9f912816973decc/zc.buildout-2.11.5.tar.gz" } ], "2.12.0": [ { "comment_text": "", "digests": { "md5": "726cf09a0b6a1a0652e2e40e339530a6", "sha256": "fff9b6709e04d96ea1523a64e8d5778c3c96a6a617e4add1377d266c291ec812" }, "downloads": -1, "filename": "zc.buildout-2.12.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "726cf09a0b6a1a0652e2e40e339530a6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 151007, "upload_time": "2018-07-02T09:21:27", "url": "https://files.pythonhosted.org/packages/f3/02/09b1d686e625159baf3d0931ad71aca0f54b4dcbd8af5479fcbc950ff12b/zc.buildout-2.12.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "33da099b830c02bd1d97be25eddd1d95", "sha256": "1150b0d8c761bbd8a5c26f77c24d96d4c75bd34dce1297cfc54335b7987fca97" }, "downloads": -1, "filename": "zc.buildout-2.12.0.tar.gz", "has_sig": false, "md5_digest": "33da099b830c02bd1d97be25eddd1d95", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162021, "upload_time": "2018-07-02T09:21:29", "url": "https://files.pythonhosted.org/packages/99/bf/dc0b700e36e1a6de6ed296e58d49bf541dc4c7083cb315765f9b557eb4fc/zc.buildout-2.12.0.tar.gz" } ], "2.12.1": [ { "comment_text": "", "digests": { "md5": "79742c995a97284847d0f953bb601bb9", "sha256": "fd83ae82cc7bf2a61c57aeea5fc0cac2c104dbe747f9a591fa339ec64eb07bd9" }, "downloads": -1, "filename": "zc.buildout-2.12.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "79742c995a97284847d0f953bb601bb9", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 151033, "upload_time": "2018-07-02T11:40:08", "url": "https://files.pythonhosted.org/packages/d9/0a/401a47b3e5d4f223b4d78fa19a2e495f622a79fe5a6460a056771cb4b36c/zc.buildout-2.12.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "143282989e31cab5ba63ead265c68b46", "sha256": "1e180b62fd129a68cb3a9ec8eb0ef457e18921269a93e87ef2cc34519415332d" }, "downloads": -1, "filename": "zc.buildout-2.12.1.tar.gz", "has_sig": false, "md5_digest": "143282989e31cab5ba63ead265c68b46", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162070, "upload_time": "2018-07-02T11:40:11", "url": "https://files.pythonhosted.org/packages/b3/a3/5cd8f26a5ec757b803dfd3b8559371dd32736cafedbcfb5b8597bcc7e2bb/zc.buildout-2.12.1.tar.gz" } ], "2.12.2": [ { "comment_text": "", "digests": { "md5": "572d8159fe9b9bda607bf2b3928e2f68", "sha256": "21530a4d08024fad1a4a031c73c0560408fe537b0a2b837b97b04187a459d9ee" }, "downloads": -1, "filename": "zc.buildout-2.12.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "572d8159fe9b9bda607bf2b3928e2f68", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 151490, "upload_time": "2018-09-04T07:49:34", "url": "https://files.pythonhosted.org/packages/75/50/a382d7a9aa715fb27080eb6542d0895767381b1322e0062cb7f131f95bb2/zc.buildout-2.12.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "db0bbe2f4f0602240b7bbda074bedade", "sha256": "ff5d7e8a1361da8dfe1025d35ef6ce55e929dd8518d2a811a1cf2c948950a043" }, "downloads": -1, "filename": "zc.buildout-2.12.2.tar.gz", "has_sig": false, "md5_digest": "db0bbe2f4f0602240b7bbda074bedade", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162525, "upload_time": "2018-09-04T07:49:36", "url": "https://files.pythonhosted.org/packages/d7/02/ad9b098ba8f77715ca2beb66fda9c1b674c8bcbc26e94b56ba392349fe69/zc.buildout-2.12.2.tar.gz" } ], "2.13.0": [ { "comment_text": "", "digests": { "md5": "831ca597ac24d2816fe2b8b2925761a2", "sha256": "76e7b466b0884688d24fbd48d60a5189e3cf09d379def0d49f66f3beffafe1a5" }, "downloads": -1, "filename": "zc.buildout-2.13.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "831ca597ac24d2816fe2b8b2925761a2", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 153915, "upload_time": "2019-01-17T13:20:45", "url": "https://files.pythonhosted.org/packages/1a/2f/8f712c1a6e2965c6ff71c3ba37982a9b1328567fc963498cab6fc89d8340/zc.buildout-2.13.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "df88a004c61ee8f4e45cdbf372ae40d4", "sha256": "45e7d8cfdbedb2092e35e78df1278c13ad79a81a98471f7dde33289bcf0d8abc" }, "downloads": -1, "filename": "zc.buildout-2.13.0.tar.gz", "has_sig": false, "md5_digest": "df88a004c61ee8f4e45cdbf372ae40d4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 166686, "upload_time": "2019-01-17T13:20:50", "url": "https://files.pythonhosted.org/packages/97/95/9cee58a6b53003ca2b8e805534fe6f320826af8c96694ee6f2b0fdb20b65/zc.buildout-2.13.0.tar.gz" } ], "2.13.1": [ { "comment_text": "", "digests": { "md5": "98f481dcf58f6d19d48f2355bdf020d6", "sha256": "968e318d1a8c46acab0e5feddb16358fccc4f7f3c2a3b425a02f3471e2209570" }, "downloads": -1, "filename": "zc.buildout-2.13.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "98f481dcf58f6d19d48f2355bdf020d6", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 153936, "upload_time": "2019-01-29T08:20:11", "url": "https://files.pythonhosted.org/packages/da/7e/f8174cafc7616ddc7230c4cb1f2e39efffcb7be110d49d50d2ff9709ebef/zc.buildout-2.13.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "acd76572f5af3a62133e89987a3ffe9b", "sha256": "3d14d07226963a517295dfad5879d2799e2e3b65b2c61c71b53cb80f5ab11484" }, "downloads": -1, "filename": "zc.buildout-2.13.1.tar.gz", "has_sig": false, "md5_digest": "acd76572f5af3a62133e89987a3ffe9b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 168405, "upload_time": "2019-01-29T08:20:14", "url": "https://files.pythonhosted.org/packages/3f/92/bf6ddecce944e3dcebfd8af4efef414a7131276b1433afb4f842012ed5ca/zc.buildout-2.13.1.tar.gz" } ], "2.13.2": [ { "comment_text": "", "digests": { "md5": "2f1cccc51a3016cb279443a11e7a0a7a", "sha256": "5dd4de86dda684c46ef8ee9cc84e335ca7f6275d4363a684de82225270d1e328" }, "downloads": -1, "filename": "zc.buildout-2.13.2.tar.gz", "has_sig": false, "md5_digest": "2f1cccc51a3016cb279443a11e7a0a7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 166252, "upload_time": "2019-07-03T08:58:18", "url": "https://files.pythonhosted.org/packages/9c/ef/bf528f9e06143a7f3d87a32a3c4f433a7c5a58c1848f6369ed571a3255e6/zc.buildout-2.13.2.tar.gz" } ], "2.2.0": [ { "comment_text": "", "digests": { "md5": "771dd9807da7d5ef5bb998991c5fdae1", "sha256": "1dceaf912ed2219f133d8a956fc61c5973bf4d887d6eda268b0f825120c7ce23" }, "downloads": -1, "filename": "zc.buildout-2.2.0.tar.gz", "has_sig": false, "md5_digest": "771dd9807da7d5ef5bb998991c5fdae1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 252119, "upload_time": "2013-07-05T18:22:46", "url": "https://files.pythonhosted.org/packages/65/64/27827e38ba12109ab732bbbe5f0f1e07d53ebb3c5120e02be95e560969dd/zc.buildout-2.2.0.tar.gz" } ], "2.2.1": [ { "comment_text": "", "digests": { "md5": "476a06eed08506925c700109119b6e41", "sha256": "a6122ea5c06c6c044a9efce4a3df452c8573e1aebfda7b24262655daac894ef5" }, "downloads": -1, "filename": "zc.buildout-2.2.1.tar.gz", "has_sig": false, "md5_digest": "476a06eed08506925c700109119b6e41", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 303217, "upload_time": "2013-09-05T17:08:06", "url": "https://files.pythonhosted.org/packages/8c/b9/27e30e7856ab501070d0e56b1c732de89059301792fe674571dc52f3759a/zc.buildout-2.2.1.tar.gz" } ], "2.2.2": [ { "comment_text": "", "digests": { "md5": "77ca4252840705446f6e011b99be5615", "sha256": "28af073d8da07870f0515b6c9d3de9fb1ceddd866d84f82cacf4231150e95a94" }, "downloads": -1, "filename": "zc.buildout-2.2.2.tar.gz", "has_sig": false, "md5_digest": "77ca4252840705446f6e011b99be5615", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 290709, "upload_time": "2014-10-30T17:37:40", "url": "https://files.pythonhosted.org/packages/d3/35/febb228ce32752d55d65b0a1a92158bf402ccf333fcfaff3c5f88e1b0721/zc.buildout-2.2.2.tar.gz" } ], "2.2.3": [ { "comment_text": "", "digests": { "md5": "a7a371b1defc90f179fcbb429ca08d3f", "sha256": "bd86bac97d9416e0feaad40735dffc022d8f618b72c4c08cfb9efa5a3800d6c2" }, "downloads": -1, "filename": "zc.buildout-2.2.3.tar.gz", "has_sig": false, "md5_digest": "a7a371b1defc90f179fcbb429ca08d3f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 290801, "upload_time": "2014-10-30T23:10:59", "url": "https://files.pythonhosted.org/packages/76/f3/d3e2c2e6a24104da136e761ba76103ff661305c77e324803447e72a2997b/zc.buildout-2.2.3.tar.gz" } ], "2.2.4": [ { "comment_text": "", "digests": { "md5": "8e17d76990f891beadf50c10b8bc5fcd", "sha256": "3855d85bc4505502d982848ea5167ca04366f535e6fe9bb7d0d79822e4131847" }, "downloads": -1, "filename": "zc.buildout-2.2.4.tar.gz", "has_sig": false, "md5_digest": "8e17d76990f891beadf50c10b8bc5fcd", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 291221, "upload_time": "2014-11-01T22:17:52", "url": "https://files.pythonhosted.org/packages/c8/8b/ef10a7e11a4aa427b7d31d45144ca70e229f795bdc30c75d5164c59d75ec/zc.buildout-2.2.4.tar.gz" } ], "2.2.5": [ { "comment_text": "", "digests": { "md5": "18e5d044f4e1ae267e34f35587e9b51c", "sha256": "fb08f24f9e51e647e29d714f6e9ad51a4ea28673dddeed831315617bb5a805d0" }, "downloads": -1, "filename": "zc.buildout-2.2.5.tar.gz", "has_sig": false, "md5_digest": "18e5d044f4e1ae267e34f35587e9b51c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 292442, "upload_time": "2014-11-04T12:25:23", "url": "https://files.pythonhosted.org/packages/35/f7/d8ecc2333993bd9c252c492f368218d185beb65dfb155563eec1904bc0fc/zc.buildout-2.2.5.tar.gz" } ], "2.3.0": [ { "comment_text": "", "digests": { "md5": "ca4c884a682b9c1a1f1ce6181a4fbcd9", "sha256": "ceec62a4ed823bf22163f2a53a774bdac50d2f787216bd4c93c3a44df757795b" }, "downloads": -1, "filename": "zc.buildout-2.3.0.tar.gz", "has_sig": false, "md5_digest": "ca4c884a682b9c1a1f1ce6181a4fbcd9", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 291630, "upload_time": "2014-12-14T21:06:36", "url": "https://files.pythonhosted.org/packages/39/bf/3d81eceaa9c9d211a2a5f159f5438b65a878cba010858332fb070ccc7f9d/zc.buildout-2.3.0.tar.gz" } ], "2.3.1": [ { "comment_text": "", "digests": { "md5": "cbf008369ca28814ed8051084622fba8", "sha256": "3295b8944c637f65db3d6c2ded239b7b41a7f2df0e0bceb8b092247edf1866fb" }, "downloads": -1, "filename": "zc.buildout-2.3.1.tar.gz", "has_sig": false, "md5_digest": "cbf008369ca28814ed8051084622fba8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 292209, "upload_time": "2014-12-16T13:05:45", "url": "https://files.pythonhosted.org/packages/87/41/591d2acd643c311f351fb7d273011fd6373f3ad1a938f685e87c7d6caf03/zc.buildout-2.3.1.tar.gz" } ], "2.4.0": [ { "comment_text": "", "digests": { "md5": "b8323b1ad285544de0c3dc14ee76ddd3", "sha256": "43c134491d5f3013c7ec79785ffa05494906af1e8d3d7a638c4f653dc494769a" }, "downloads": -1, "filename": "zc.buildout-2.4.0.tar.gz", "has_sig": false, "md5_digest": "b8323b1ad285544de0c3dc14ee76ddd3", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 298163, "upload_time": "2015-07-01T13:51:03", "url": "https://files.pythonhosted.org/packages/5a/cf/52372ee464e52dd72bd980a56b6ffd0fcd6cfb408067ae0bd726b6d2fab8/zc.buildout-2.4.0.tar.gz" } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "85a55c63a92738a3aa5b74f2b6822223", "sha256": "0f74c82f4bee99e93d7d643c975fac3a5a1126e4d409ad4927e3864201179a8b" }, "downloads": -1, "filename": "zc.buildout-2.4.1.tar.gz", "has_sig": false, "md5_digest": "85a55c63a92738a3aa5b74f2b6822223", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 298685, "upload_time": "2015-08-07T23:21:50", "url": "https://files.pythonhosted.org/packages/55/06/729a8857ebc305173fe9a1c23605a2074778ed25702f0a2c971bb0aaa4b9/zc.buildout-2.4.1.tar.gz" } ], "2.4.2": [ { "comment_text": "", "digests": { "md5": "ecb0660208adc7de564f1293121f09ef", "sha256": "d8673750ce6df1dd9dd0b86aa79119efd2728e9547dfaace3521fa2ef9318333" }, "downloads": -1, "filename": "zc.buildout-2.4.2.tar.gz", "has_sig": false, "md5_digest": "ecb0660208adc7de564f1293121f09ef", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 299432, "upload_time": "2015-08-26T09:55:07", "url": "https://files.pythonhosted.org/packages/ea/83/35ee723d8128636b4358fcec2a7a2d8180ac4afc8d99351d90bc89a355a5/zc.buildout-2.4.2.tar.gz" } ], "2.4.3": [ { "comment_text": "", "digests": { "md5": "32dcb3de0673193b78d670c29551ef6c", "sha256": "db877d791e058a6207ac716e1017296e6862e4f1b5388dd145702eb19d902580" }, "downloads": -1, "filename": "zc.buildout-2.4.3.tar.gz", "has_sig": false, "md5_digest": "32dcb3de0673193b78d670c29551ef6c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 298421, "upload_time": "2015-09-02T22:04:38", "url": "https://files.pythonhosted.org/packages/a4/da/9bd17419b16b06be333f245a9a98e01ce1767ae35e6e87ef75011e4f4859/zc.buildout-2.4.3.tar.gz" } ], "2.4.4": [ { "comment_text": "", "digests": { "md5": "731249221dac4e7ddfbe4828df48ce1e", "sha256": "60b2b497fb4d084120a078f61fa47f8789670adbf2a76d12ca57c62a9acb9e04" }, "downloads": -1, "filename": "zc.buildout-2.4.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "731249221dac4e7ddfbe4828df48ce1e", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 257579, "upload_time": "2015-10-02T07:59:08", "url": "https://files.pythonhosted.org/packages/a9/06/a0ce569864d200dc87ef8f00c486ea652962baba89991d420977d8d19b7e/zc.buildout-2.4.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "672d9acddbb21a6c47b732e53396de5f", "sha256": "450b502b6e1f5a90089663a51a69a21ebbf8efc4f775378e45ed29ef13c9e78b" }, "downloads": -1, "filename": "zc.buildout-2.4.4.tar.gz", "has_sig": false, "md5_digest": "672d9acddbb21a6c47b732e53396de5f", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 298642, "upload_time": "2015-10-02T07:59:14", "url": "https://files.pythonhosted.org/packages/f0/86/e12a272667b8b8f619c91652f196a2070a080be0a8bf40c93026a5d7ed74/zc.buildout-2.4.4.tar.gz" } ], "2.4.5": [ { "comment_text": "", "digests": { "md5": "0f515bc9539727e204e71a6c97dce0d1", "sha256": "51285c1391258c64f0a4a28a3b4d26adedbd2775540dbb6b835981e688d1a6a4" }, "downloads": -1, "filename": "zc.buildout-2.4.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "0f515bc9539727e204e71a6c97dce0d1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 260479, "upload_time": "2015-10-14T19:42:51", "url": "https://files.pythonhosted.org/packages/de/56/db5624e55b003e2c098771c7a7ed807fce007ac49a9a61c0179fd6406700/zc.buildout-2.4.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "74534e8d24b94922a896abd32d2c8e7a", "sha256": "13d81a01a265c4185a31a30133b0383f503e7814825a88907c902425cad58832" }, "downloads": -1, "filename": "zc.buildout-2.4.5.tar.gz", "has_sig": false, "md5_digest": "74534e8d24b94922a896abd32d2c8e7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 300829, "upload_time": "2015-10-14T19:42:56", "url": "https://files.pythonhosted.org/packages/2a/95/2ba29e747b1a7ddf39379780296186620cb9c9c51222a3e17d35a77ebfda/zc.buildout-2.4.5.tar.gz" } ], "2.4.6": [ { "comment_text": "", "digests": { "md5": "d6ca7fcbbad9c78c27fb92f6c88294f1", "sha256": "54db0bc0f9eb1c6a1751541ab44bd3b842f21e2f9a7e050682b289a90a6c04f1" }, "downloads": -1, "filename": "zc.buildout-2.4.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d6ca7fcbbad9c78c27fb92f6c88294f1", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 260613, "upload_time": "2015-10-28T08:23:08", "url": "https://files.pythonhosted.org/packages/63/e3/abe173bbd259110eb128007aca7d89e09003b1551c27e858053e3af5f545/zc.buildout-2.4.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b4971b8ee69309d09aafdfb963090b0c", "sha256": "75897c752d2e72a181ae9729a5cf62104f16b4210815081c1cb78f5380b868a2" }, "downloads": -1, "filename": "zc.buildout-2.4.6.tar.gz", "has_sig": false, "md5_digest": "b4971b8ee69309d09aafdfb963090b0c", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 301034, "upload_time": "2015-10-28T08:23:15", "url": "https://files.pythonhosted.org/packages/27/4c/9b1a4e0424028d73b7f64d0fd13cb44bcce0fee6cc1914083c22dcf06e97/zc.buildout-2.4.6.tar.gz" } ], "2.4.7": [ { "comment_text": "", "digests": { "md5": "f528f4c9b25208eb962bdd4862538717", "sha256": "1755042c99af8225480798473e5bf4add3c9b0fe8810239a1c191745be650117" }, "downloads": -1, "filename": "zc.buildout-2.4.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "f528f4c9b25208eb962bdd4862538717", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 260720, "upload_time": "2015-10-29T09:46:27", "url": "https://files.pythonhosted.org/packages/a8/3a/457080874411689afda7701f1cb81e47d301a74b73927807c90332b963eb/zc.buildout-2.4.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e385a5ce2a6bc4554dbb3eda614893f0", "sha256": "6f1a2331212141ef93329eb42d9bf0b4053232b0688f42199794f2870aea5d11" }, "downloads": -1, "filename": "zc.buildout-2.4.7.tar.gz", "has_sig": false, "md5_digest": "e385a5ce2a6bc4554dbb3eda614893f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 301196, "upload_time": "2015-10-29T09:46:34", "url": "https://files.pythonhosted.org/packages/54/65/6ef8ab05530aa5ca6fe7603c98d89beb9bbe443d139b415d1e6796a049cb/zc.buildout-2.4.7.tar.gz" } ], "2.5.0": [ { "comment_text": "", "digests": { "md5": "739582d22e3ddd5e79158b9b39ed27de", "sha256": "b0fa872cf62d7a84419b9f1fbc9aaaf572ead55c588c3baceb1db3924f29c264" }, "downloads": -1, "filename": "zc.buildout-2.5.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "739582d22e3ddd5e79158b9b39ed27de", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 261503, "upload_time": "2015-11-16T08:43:52", "url": "https://files.pythonhosted.org/packages/de/c1/cdd58b194e1317f259920de875693156456d4d866795d64d48d7e12d9bf9/zc.buildout-2.5.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4c31eb4fae176b15e1e1e7dbaba159be", "sha256": "721bd2231a9f01f2d5c14f3adccb3385f85b093ee05b18d15d0ff2b9f1f1bd02" }, "downloads": -1, "filename": "zc.buildout-2.5.0.tar.gz", "has_sig": false, "md5_digest": "4c31eb4fae176b15e1e1e7dbaba159be", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 302144, "upload_time": "2015-11-16T08:43:59", "url": "https://files.pythonhosted.org/packages/b4/ca/920efb46e798212ae1bbf40e9bc02dc33b57d9904d60a37316e9306224ea/zc.buildout-2.5.0.tar.gz" } ], "2.5.1": [ { "comment_text": "", "digests": { "md5": "3d9cfdecc3e36ddede78f085cdf20734", "sha256": "cf70c23169f9cbd885e158fdc465367053d255bb7986e21da220b8eabb30219b" }, "downloads": -1, "filename": "zc.buildout-2.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "3d9cfdecc3e36ddede78f085cdf20734", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 261778, "upload_time": "2016-04-06T10:41:10", "url": "https://files.pythonhosted.org/packages/76/78/95a302346d981c160c38621e9f4c37fc68db4256f64afd8f3ec3d02f8f1c/zc.buildout-2.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "c88947a3c021ee1509a331c4fa9be187", "sha256": "9d0a306cf4640fd57e6203f7084ff649047a29db36cb86acff8eaaff507508ca" }, "downloads": -1, "filename": "zc.buildout-2.5.1.tar.gz", "has_sig": false, "md5_digest": "c88947a3c021ee1509a331c4fa9be187", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 302465, "upload_time": "2016-04-06T10:41:17", "url": "https://files.pythonhosted.org/packages/bd/07/28eba9f0a9da3544611db7e1796583a9c61a3c83c26f6a80e4fd790752b1/zc.buildout-2.5.1.tar.gz" } ], "2.5.2": [ { "comment_text": "", "digests": { "md5": "afd18a79bbe65850d2ab24ebad32450c", "sha256": "9d0a4553d3a60805535c1c07375fd3bba15b111ba8a4f8a6d0b5bfbfea6a761f" }, "downloads": -1, "filename": "zc.buildout-2.5.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "afd18a79bbe65850d2ab24ebad32450c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 262384, "upload_time": "2016-06-07T07:53:30", "url": "https://files.pythonhosted.org/packages/f6/b9/7512fb31ec2aeb7a8fd4e914057a5db3831d66c16e25a4401c30383ec252/zc.buildout-2.5.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "06a21fb02528c07aa0db31de0389a244", "sha256": "637c7fd7496f8d6aef104c242f5a911a7f9f63479d98acbc448e2ec187ba31ec" }, "downloads": -1, "filename": "zc.buildout-2.5.2.tar.gz", "has_sig": false, "md5_digest": "06a21fb02528c07aa0db31de0389a244", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 303199, "upload_time": "2016-06-07T07:53:43", "url": "https://files.pythonhosted.org/packages/ec/a1/60214738d5dcb199ad97034ecf349d18f3ab69659df827a5e182585bfe48/zc.buildout-2.5.2.tar.gz" } ], "2.5.3": [ { "comment_text": "", "digests": { "md5": "573c1bce4515733153489c2e98a29cda", "sha256": "112cecaa8db58a07f72dde5802e1fdea679ab928197d8570214a54713b38ed40" }, "downloads": -1, "filename": "zc.buildout-2.5.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "573c1bce4515733153489c2e98a29cda", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 264116, "upload_time": "2016-09-05T09:13:19", "url": "https://files.pythonhosted.org/packages/df/28/5382a025aac15805007743378cdbff2b3462099e2c8733580025cbb95b26/zc.buildout-2.5.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "31e1397cd213e0965378d672c327a2e8", "sha256": "3e5f3afcc64416604c5efc554c2fa0901b60657e012a710c320e2eb510efcfb9" }, "downloads": -1, "filename": "zc.buildout-2.5.3.tar.gz", "has_sig": false, "md5_digest": "31e1397cd213e0965378d672c327a2e8", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 305163, "upload_time": "2016-09-05T09:13:23", "url": "https://files.pythonhosted.org/packages/e4/7b/63863f09bec5f5d7b9474209a6d4d3fc1e0bca02ecfb4c17f0cdd7b554b6/zc.buildout-2.5.3.tar.gz" } ], "2.6.0": [ { "comment_text": "", "digests": { "md5": "891d9d78a8336a8c01390f5bfd3a367b", "sha256": "391b130dd4a8ab8d81667804f81db15fd5f1747a064eaf99b80f75d111768b48" }, "downloads": -1, "filename": "zc.buildout-2.6.0.tar.gz", "has_sig": false, "md5_digest": "891d9d78a8336a8c01390f5bfd3a367b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 306751, "upload_time": "2017-01-29T18:39:16", "url": "https://files.pythonhosted.org/packages/7f/ce/a714ab788754373a55c1f110eff61d49ca1e7b41bcec505189fedce39794/zc.buildout-2.6.0.tar.gz" } ], "2.7.0": [ { "comment_text": "", "digests": { "md5": "17b110d529de6a7a9208f0b940b3b6c8", "sha256": "efaa8b00d0d879e66e90e0e7199c634918bcd8bb43ffec9ea5ac1784ce82ed65" }, "downloads": -1, "filename": "zc.buildout-2.7.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "17b110d529de6a7a9208f0b940b3b6c8", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 268720, "upload_time": "2017-01-30T19:23:57", "url": "https://files.pythonhosted.org/packages/6e/f6/39f0c748a853ccd0efd09af25dfec2686cde22ca31e2bfa50517de1df558/zc.buildout-2.7.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "d9abf24b7a1cb8273e55f65ae0cd00c6", "sha256": "6fc90c9fbcd7e2924d626b260c381361cb351f30b2ebea7481daf103c2f9c76c" }, "downloads": -1, "filename": "zc.buildout-2.7.0.tar.gz", "has_sig": false, "md5_digest": "d9abf24b7a1cb8273e55f65ae0cd00c6", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 310548, "upload_time": "2017-01-30T19:23:59", "url": "https://files.pythonhosted.org/packages/57/75/58f3db560015e1a15f72c18002b49c94694480a5b922bb93237fa698f7c6/zc.buildout-2.7.0.tar.gz" } ], "2.7.1": [ { "comment_text": "", "digests": { "md5": "bc3a5f02cdc8501c4ab6bbefb096a6f7", "sha256": "da9243b8a811bf395f8e2fddfb9ec8af1d3be52522f476bcdb0f5dc9b4460dee" }, "downloads": -1, "filename": "zc.buildout-2.7.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bc3a5f02cdc8501c4ab6bbefb096a6f7", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 269231, "upload_time": "2017-01-31T17:10:30", "url": "https://files.pythonhosted.org/packages/f8/25/60f6433b9f1f2c944695cffa3f2c12d5592c8778aa53b56f207c870b6e4a/zc.buildout-2.7.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "df25d21918d61f7c3a575e24a3a281e5", "sha256": "89c7b438879ca30637f8c159d81ae7e198d236e7e67e68d2a1f2cd89291b2230" }, "downloads": -1, "filename": "zc.buildout-2.7.1.tar.gz", "has_sig": false, "md5_digest": "df25d21918d61f7c3a575e24a3a281e5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 311156, "upload_time": "2017-01-31T17:10:33", "url": "https://files.pythonhosted.org/packages/98/0a/3e922f00954eba36ce2846643ef8eaac91db63e641dc28afc84587b05f7a/zc.buildout-2.7.1.tar.gz" } ], "2.8.0": [ { "comment_text": "", "digests": { "md5": "bf9359f2f9ce8c0b3dc9a6e19ae09bd3", "sha256": "3c94286ccbff20df4442792cfb227c1a20014285ce008768c7ed0f2dc3d98196" }, "downloads": -1, "filename": "zc.buildout-2.8.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "bf9359f2f9ce8c0b3dc9a6e19ae09bd3", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 269795, "upload_time": "2017-02-13T19:30:58", "url": "https://files.pythonhosted.org/packages/a5/6c/17a727e7372eea17dc935c1b8becd904e1427466d6f270fd1390651efdc4/zc.buildout-2.8.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "b042d1833de600cd55e7134a5d58eb09", "sha256": "7cd343bb13aa6628a7a973b0095700a8f44b086d70792331003f353a79aa1884" }, "downloads": -1, "filename": "zc.buildout-2.8.0.tar.gz", "has_sig": false, "md5_digest": "b042d1833de600cd55e7134a5d58eb09", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 311767, "upload_time": "2017-02-13T19:31:02", "url": "https://files.pythonhosted.org/packages/2f/5f/b0eb13ea786d31128016e3802d86efbf1a293ab5e672334acb61e3de2e9a/zc.buildout-2.8.0.tar.gz" } ], "2.9.0": [ { "comment_text": "", "digests": { "md5": "ad68646530f069056c6b8d94c5c35025", "sha256": "054ae428d8e9e5d3b7009f8ee9ede6140c09d3cf635c80d60a7a65751b7bd9ce" }, "downloads": -1, "filename": "zc.buildout-2.9.0-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "ad68646530f069056c6b8d94c5c35025", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 151300, "upload_time": "2017-03-06T17:37:04", "url": "https://files.pythonhosted.org/packages/38/40/701d4eaef25969d6fa7af062164bba672bf07794de9c26e836cc14a8ba22/zc.buildout-2.9.0-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7f3f0e7b7c61f112b03d6883747de42a", "sha256": "a3f15b0b30d042aec9bfff9480ac9f7bf50669f773adcf971ae4bb14c87a5e3d" }, "downloads": -1, "filename": "zc.buildout-2.9.0.tar.gz", "has_sig": false, "md5_digest": "7f3f0e7b7c61f112b03d6883747de42a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 157287, "upload_time": "2017-03-06T17:37:10", "url": "https://files.pythonhosted.org/packages/c6/a8/bef1b48c700cd19dfb6e8cc1117e19a6f78e487699e543e158f171f95db7/zc.buildout-2.9.0.tar.gz" } ], "2.9.1": [ { "comment_text": "", "digests": { "md5": "d97d5962613a8a78cc063430bbc6f176", "sha256": "6ce947aaa126ec01224443ffa2292752237858d9076a99b5f72c98f177def16d" }, "downloads": -1, "filename": "zc.buildout-2.9.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "d97d5962613a8a78cc063430bbc6f176", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 151346, "upload_time": "2017-03-06T17:57:08", "url": "https://files.pythonhosted.org/packages/0a/14/72c981ff33c65b81f9e887d6f6200994bbcfd5e2f9723ca6fc1d92715d3d/zc.buildout-2.9.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "8b390910cf6aa2abd26005ddcb455cee", "sha256": "723d78304162b31985510d8673d72e487b3ea05c410179e3795b01209685913b" }, "downloads": -1, "filename": "zc.buildout-2.9.1.tar.gz", "has_sig": false, "md5_digest": "8b390910cf6aa2abd26005ddcb455cee", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 157334, "upload_time": "2017-03-06T17:57:11", "url": "https://files.pythonhosted.org/packages/c2/e8/665622bf4516f9023d99caa265577b38681ee16d07dc5aaa3e8656e4ad0e/zc.buildout-2.9.1.tar.gz" } ], "2.9.2": [ { "comment_text": "", "digests": { "md5": "a52502b292ad0f65c14b4c2efaa3e006", "sha256": "7f9a4841ce7b5fc0a813ee08c3d109c960d49f1a1f4bd8cec5873acd5a40ab1b" }, "downloads": -1, "filename": "zc.buildout-2.9.2-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "a52502b292ad0f65c14b4c2efaa3e006", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 151443, "upload_time": "2017-03-06T21:35:48", "url": "https://files.pythonhosted.org/packages/99/62/7d962f22da5605678117b16381b5e1928309a4b58d9053cf833cf5681809/zc.buildout-2.9.2-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "e629fca85f8539968d2c44c7738509fa", "sha256": "513916fef5a99db0a6a03ca210c734746f42b59ff6cc4b87b4947fdb9d6641a8" }, "downloads": -1, "filename": "zc.buildout-2.9.2.tar.gz", "has_sig": false, "md5_digest": "e629fca85f8539968d2c44c7738509fa", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 157509, "upload_time": "2017-03-06T21:35:51", "url": "https://files.pythonhosted.org/packages/d9/a7/e0d48d47c5c71df71cdef6522c6287d304ef64d1c1f241a106b57b6a2b94/zc.buildout-2.9.2.tar.gz" } ], "2.9.3": [ { "comment_text": "", "digests": { "md5": "e47a0c26757a9c8597a258fd356ad9d5", "sha256": "265b94de556d5fd056a35beddf866b823840fb4f0dfee52a31840b4f456de8d1" }, "downloads": -1, "filename": "zc.buildout-2.9.3-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "e47a0c26757a9c8597a258fd356ad9d5", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 153093, "upload_time": "2017-03-30T10:20:36", "url": "https://files.pythonhosted.org/packages/da/f9/2df9b12709f1d5471b8257c1064b1458cddda8ac53170605749660154dae/zc.buildout-2.9.3-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "9fe7459858fc7a8f8438c1317e0a9679", "sha256": "c8ba2e497ee4e6c2a72ba1714093904c9250f21bc115187c45026d22193b386f" }, "downloads": -1, "filename": "zc.buildout-2.9.3.tar.gz", "has_sig": false, "md5_digest": "9fe7459858fc7a8f8438c1317e0a9679", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 159288, "upload_time": "2017-03-30T10:14:59", "url": "https://files.pythonhosted.org/packages/f8/bc/9784f749395bfdcb66817527cdfed111b67f8ce23997b0702cfeb8ab0e82/zc.buildout-2.9.3.tar.gz" } ], "2.9.4": [ { "comment_text": "", "digests": { "md5": "01e7d7211915524cf03df8d473e92ebe", "sha256": "46fc7f424b6425530ffc70bc2033724f184272700b153e235c46833a9d5da6a9" }, "downloads": -1, "filename": "zc.buildout-2.9.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "01e7d7211915524cf03df8d473e92ebe", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 154384, "upload_time": "2017-06-20T15:27:29", "url": "https://files.pythonhosted.org/packages/6a/95/9cf555d58fe61321073b3e054967c6f1cb6211c0885ae815e2f0836ffc17/zc.buildout-2.9.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "04ab4aa359488cff25329ce18560f4c2", "sha256": "df56cc55735e984510986c633090ad0d64f59d7e42d1aac57ecf04ab183d1053" }, "downloads": -1, "filename": "zc.buildout-2.9.4.tar.gz", "has_sig": false, "md5_digest": "04ab4aa359488cff25329ce18560f4c2", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 160830, "upload_time": "2017-06-20T15:27:33", "url": "https://files.pythonhosted.org/packages/9b/10/0afcb717fe727f57bb4a2485e1726551835c26612a00f6a62948c715fb21/zc.buildout-2.9.4.tar.gz" } ], "2.9.5": [ { "comment_text": "", "digests": { "md5": "811e2c2b1ba3a3b4746e6dd16d29d42c", "sha256": "11e170d845dad0de49d043646839bcea48e7434ce71141a893cd402bbafb143f" }, "downloads": -1, "filename": "zc.buildout-2.9.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "811e2c2b1ba3a3b4746e6dd16d29d42c", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 154652, "upload_time": "2017-09-22T19:28:43", "url": "https://files.pythonhosted.org/packages/c1/26/3d6930a17155c85d80ec5b03575cb6365f196c3f8969c3eee175d2f27c19/zc.buildout-2.9.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "23b9de34f20f88a4cf48f20b7d55d7f0", "sha256": "dce840ea379e2ff10bae27465778708704e0a4287cde92eb6c7961f5b0277cfa" }, "downloads": -1, "filename": "zc.buildout-2.9.5.tar.gz", "has_sig": false, "md5_digest": "23b9de34f20f88a4cf48f20b7d55d7f0", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 161088, "upload_time": "2017-09-22T19:28:46", "url": "https://files.pythonhosted.org/packages/47/f9/dadef69567929386c9e65eaa90fd60f42920c008b070f8b4234ce9ef9a7d/zc.buildout-2.9.5.tar.gz" } ], "2.9.6": [ { "comment_text": "", "digests": { "md5": "cc0bce50cc04733fa913b6d51c53273f", "sha256": "368fb2b9ca1b2ffe865045627eb8d92231d6b784da2faa9414a5e299c4edb003" }, "downloads": -1, "filename": "zc.buildout-2.9.6-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "cc0bce50cc04733fa913b6d51c53273f", "packagetype": "bdist_wheel", "python_version": "py2.py3", "requires_python": null, "size": 155146, "upload_time": "2017-12-01T08:17:40", "url": "https://files.pythonhosted.org/packages/35/99/0744fd5d369c26e76a65118cb1d3c2425688f7caf4ba147e0cd99dadae4c/zc.buildout-2.9.6-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "0f25e425b9691cf89b4a7eea49772982", "sha256": "f8bb89b5a6b82800812c10766ad07c3ef8f06ef156e28e1f735fe8b41f96e91e" }, "downloads": -1, "filename": "zc.buildout-2.9.6.tar.gz", "has_sig": false, "md5_digest": "0f25e425b9691cf89b4a7eea49772982", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 162812, "upload_time": "2017-12-01T08:17:42", "url": "https://files.pythonhosted.org/packages/ac/b1/f8e75fe6ea558ba8db29a048319d99c667cc3a6ed2c8a3032f2f04fc60c4/zc.buildout-2.9.6.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "2f1cccc51a3016cb279443a11e7a0a7a", "sha256": "5dd4de86dda684c46ef8ee9cc84e335ca7f6275d4363a684de82225270d1e328" }, "downloads": -1, "filename": "zc.buildout-2.13.2.tar.gz", "has_sig": false, "md5_digest": "2f1cccc51a3016cb279443a11e7a0a7a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 166252, "upload_time": "2019-07-03T08:58:18", "url": "https://files.pythonhosted.org/packages/9c/ef/bf528f9e06143a7f3d87a32a3c4f433a7c5a58c1848f6369ed571a3255e6/zc.buildout-2.13.2.tar.gz" } ] }