{ "info": { "author": "William E. Hart", "author_email": "wehart@sandia.gov", "bugtrack_url": null, "classifiers": [ "Development Status :: 4 - Beta", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: BSD License", "Natural Language :: English", "Operating System :: Microsoft :: Windows", "Operating System :: Unix", "Programming Language :: Python", "Programming Language :: Unix Shell", "Topic :: Scientific/Engineering :: Mathematics", "Topic :: Software Development :: Libraries :: Python Modules" ], "description": "==========================\npyutilib.virtualenv README\n==========================\n\nThis Python package includes the **vpy_create** script, which is\nused to create **virtualenv** bootstrap scripts that automate the installation of\n**virtualenv** along with other Python packages.\n\n---------------\nGetting Started\n---------------\n\nOverview\n~~~~~~~~\n\nThe **vpy_create** script integrates a Python module into a **virtualenv**\nbootstrap script. A user defines a **configure()** function in this module to\ncontrol the configuration of the **virtualenv** installation. For example, the\nfollowing function declares the default installation directory, and that the\nvirtual Python repository contains the **virtualenv** and **nose** Python packages::\n\n def configure(installer):\n installer.default_dirname = 'venv'\n installer.add_repository('virtualenv', pypi='virtualenv')\n installer.add_repository('nose', pypi='nose')\n installer.add_repository(\n 'pyutilib.subprocess', \n root='https://software.sandia.gov/svn/public/pyutilib.subprocess', \n dev=True)\n return installer\n\nThe **add_repository** method can specify a PyPI package with the *pypi*\noption. Alternatively, the root of a subversion repository can be specified\nwith the *root* option. If the *dev* option is specified, then this\nrepository is checked out and installed in the **/src** directory.\nFurther, this package is installed in *develop* mode.\n\n\nA virtual Python bootstrap script is created by calling\n**vpy_create** and specifying the Python module and script\nname.::\n\n vpy_create venv.py venv_install\n\nThe bootstrap script, **venv_install**, creates the virtual Python\ninstallation in the specified directory, **venv**:\n\n venv_install\n\nThe user can also specify the installation directory::\n\n venv_install venvdir\n\n\nBy default, the bootstrap script installs the latest software release.\nIn PyPI, this is the latest revision. In subversion, this is the latest\nrevision in either the *tags* or *releases* directory. The trunk branch of\nthe subversion repository can also be installed using the **--trunk** option::\n\n venv_install --trunk venv\n\nSimilarly, the bootstrap script recognizes stable branches, which can\nbe installed with the **--stable** option. Note that if stable branches are\nnot available, then the latest release is installed.\n\n\nInternet Connectivity\n~~~~~~~~~~~~~~~~~~~~~\n\nBy default, the bootstrap script uses an internet connection to download the \nPython packages that are installed. Note that a proxy server may be needed\nfor the bootstrap script to work correctly. The user can define the\nHTTP_PROXY environmental variable to specify the name of a proxy server.\nAlternatively, the **--proxy** option can be specified.\n\nThe bootstrap script also provides a mechanism for enabling offline virtualenv\ninstallations. This requires a two-stage process. First, the\n**--preinstall** option is used to create a ZIP file that contains the Python\npackages. For example, the command::\n\n venv_install --preinstall\n\ncreates a **venv** directory, which includes the file **venv/venv.zip**.\nThe preinstall step must be executed on a machine with internet\nconnectivity. However, this ZIP file can be used to perform an off-line\ninstallation with the **--offline** option. For example, the following\ncommand will uses the **venv.zip** file to perform off-line installation\nin the **temp** directory::\n\n venv_install --offline --zip=venv.zip test\n\nNote that this technique also installs the **setuptools** packages offline.\nThus, the bootstrap script generated by **vpy_create** \nsupports a purely offline setup of virtualenv environments, which is not supported\nby the **virtualenv** bootstrap process.\n\n\nA Configurable Installer\n~~~~~~~~~~~~~~~~~~~~~~~~\n\nThe **vpy_install** script provided with **pyutilib.virtualenv** is a **virtualenv**\nbootstrap script that can be configured with INI files. For example, the\nconsider the following INI file::\n\n ;\n ; This INI file can be used by vpy_install to create a virtual\n ; Python installation.\n ;\n [installer]\n description=This is an example.\n README=\"#\n # This is a README file created by the bootstrap script.\n #\"\n\n [nose]\n pypi=nose\n\n [pyutilib.subprocess]\n root=https://software.sandia.gov/svn/public/pyutilib/pyutilib.subprocess\n dev=True\n\nThe default installation directory for **vpy_install** is **python**.\nThis INI file will install the **nose** and **pyutilib.subprocess**\npackages, and the **pyutilib.subprocess** package will be installed in\n**python/src/pyutilib.subprocess** as an editable *develop* package.\n\nNote that **vpy_install** does not require a user to install\n**setuptools**. The **setuptools** package is only required when the\n**--preinstall** option is specified. Thus, the default behavior of\n**vpy_install** (and other bootstrap scripts) does not require the\ninstallation of any third-party packages. The **vpy_install** script\ncan be distributed independent of **pyutilib.virtualenv**, and it can\ngenerally be used as a stand-alone script.\n\nThe **vpy_install** script supports an **--update** option that allows the\nuser to update virtual Python installations. This option does the following\nupdates:\n\n* PyPI packages are upgraded\n* Subversion packages are updated and reinstalled\n\nNote that this option does not search for a newer release of a subversion\npackage. This limitation reflects the manner in which subversion packages\nare checked out within the virtual Python installation, which may be revised\nin the future.\n\n\n-------\nLicense\n-------\n\nBSD. See the LICENSE.txt file.\n\n\n------------\nOrganization\n------------\n\n+ Directories\n\n * pyutilib - The root directory for PyUtilib source code\n\n+ Documentation and Bug Tracking\n\n * Trac wiki: https://software.sandia.gov/trac/pyutilib\n \n * Examples in the pyutilib.virtualenv/example directory\n\n+ Authors\n\n * See the AUTHORS.txt file.\n\n+ Project Managers\n\n * William E. Hart, wehart@sandia.gov\n\n+ Mailing List\n\n * pyutilib-forum@googlegroups.com\n - The main list for help and announcements\n * pyutilib-developers@googlegroups.com\n - Where developers of PyUtilib discuss new features\n\n--------------------\nThird Party Software\n--------------------\n\nThe pyutilib.virtualenv package depends on the following Python packages:\n - virtualenv", "description_content_type": null, "docs_url": null, "download_url": "UNKNOWN", "downloads": { "last_day": -1, "last_month": -1, "last_week": -1 }, "home_page": "https://software.sandia.gov/svn/public/pyutilib/pyutilib.virtualenv", "keywords": "utility", "license": "BSD", "maintainer": null, "maintainer_email": null, "name": "pyutilib.virtualenv", "package_url": "https://pypi.org/project/pyutilib.virtualenv/", "platform": "any", "project_url": "https://pypi.org/project/pyutilib.virtualenv/", "project_urls": { "Download": "UNKNOWN", "Homepage": "https://software.sandia.gov/svn/public/pyutilib/pyutilib.virtualenv" }, "release_url": "https://pypi.org/project/pyutilib.virtualenv/4.7/", "requires_dist": null, "requires_python": null, "summary": "PyUtilib utility for building custom virtualenv bootstrap scripts.", "version": "4.7" }, "last_serial": 1920201, "releases": { "1.0": [ { "comment_text": "", "digests": { "md5": "9179feec7c197586c131bb6279850bd4", "sha256": "7c4ce5714604f90df0aa24c1fb2826ad5a2370ae1b3fde7083050eb6cf137979" }, "downloads": -1, "filename": "pyutilib.virtualenv-1.0.zip", "has_sig": false, "md5_digest": "9179feec7c197586c131bb6279850bd4", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 220925, "upload_time": "2009-11-01T23:59:12", "url": "https://files.pythonhosted.org/packages/5a/bd/46084da6b0b8dc66638787c3f7eab27a81f1ca8085b97bbb880ec97bb8da/pyutilib.virtualenv-1.0.zip" } ], "1.1": [ { "comment_text": "", "digests": { "md5": "9437c3cc16ccff2fc5ed154c912dba43", "sha256": "3d4685ec67bb299740fc8d3d36a0113775b73df62d6c8dead779d1a55adce240" }, "downloads": -1, "filename": "pyutilib.virtualenv-1.1.tar.gz", "has_sig": false, "md5_digest": "9437c3cc16ccff2fc5ed154c912dba43", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 218701, "upload_time": "2009-11-04T06:34:27", "url": "https://files.pythonhosted.org/packages/85/45/ae1a68318f02f7bac396843b0b42a0e1ec8613b1fc587c711c92de82fa94/pyutilib.virtualenv-1.1.tar.gz" } ], "1.2": [ { "comment_text": "", "digests": { "md5": "3495475941762f02334b6c0c673d81b1", "sha256": "eb5743751c1b40e560a1cde171ec5a35da84b8c7681929285f7665bf1d6da4ee" }, "downloads": -1, "filename": "pyutilib.virtualenv-1.2.tar.gz", "has_sig": false, "md5_digest": "3495475941762f02334b6c0c673d81b1", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 180985, "upload_time": "2009-11-08T06:37:39", "url": "https://files.pythonhosted.org/packages/bb/f8/cc4268aeec8b8b6c04100e6d64ad056a8362de791da28f6e7b1adf3f147e/pyutilib.virtualenv-1.2.tar.gz" } ], "1.2.1": [ { "comment_text": "", "digests": { "md5": "05c2dd0661d7d7708b47488fca31ce48", "sha256": "fc3522befeba41fa513dc200d51e96d6c08c4962748273f44a296764f692beb1" }, "downloads": -1, "filename": "pyutilib.virtualenv-1.2.1.tar.gz", "has_sig": false, "md5_digest": "05c2dd0661d7d7708b47488fca31ce48", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 181003, "upload_time": "2009-11-12T02:20:10", "url": "https://files.pythonhosted.org/packages/7b/f1/2d41105c867ecb36d0e93d86c1567be3642fd0667c7dd5e17b6fe8336cde/pyutilib.virtualenv-1.2.1.tar.gz" } ], "1.3": [ { "comment_text": "", "digests": { "md5": "4508734b41b46c2baaea68a89139753d", "sha256": "5ab0847b182ff363521d125af366511c20e86ceff16e9845ab341a5cf510a5e7" }, "downloads": -1, "filename": "pyutilib.virtualenv-1.3.tar.gz", "has_sig": false, "md5_digest": "4508734b41b46c2baaea68a89139753d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 181911, "upload_time": "2009-11-27T19:09:32", "url": "https://files.pythonhosted.org/packages/43/25/59b7de9caa1e70ac565c029dcbb4bd135a4390f97c42f8b0c38169b3a9f7/pyutilib.virtualenv-1.3.tar.gz" } ], "1.3.1": [ { "comment_text": "", "digests": { "md5": "b29913e383feab944eea201149e0be50", "sha256": "d919cd1f79d1628ec6b4e7bf7063414a635791914ef0fb6818ad9395b235d227" }, "downloads": -1, "filename": "pyutilib.virtualenv-1.3.1.tar.gz", "has_sig": false, "md5_digest": "b29913e383feab944eea201149e0be50", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 180539, "upload_time": "2010-02-02T04:51:33", "url": "https://files.pythonhosted.org/packages/e8/5d/1b850ef92e1045ed69a43f43a9424a3bbf0521cb42d4ed6afb97cdc677fc/pyutilib.virtualenv-1.3.1.tar.gz" } ], "1.4.1": [ { "comment_text": "", "digests": { "md5": "cede32393df1a8e9972a66f81b31f93e", "sha256": "ac658cd024631657236d57aa4970fcd01dc5952ba4c14b3d2026bfeb628e6887" }, "downloads": -1, "filename": "pyutilib.virtualenv-1.4.1.tar.gz", "has_sig": false, "md5_digest": "cede32393df1a8e9972a66f81b31f93e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 181725, "upload_time": "2010-03-25T04:01:42", "url": "https://files.pythonhosted.org/packages/90/3f/93192e64a270f619a456fa4bee7a68961734eb968816f7a4f6e0fef3a3d8/pyutilib.virtualenv-1.4.1.tar.gz" } ], "1.4.2": [ { "comment_text": "", "digests": { "md5": "14f2bacd5998419057c15d9562bc7bad", "sha256": "9a031335625a410428551cedd85fd989da6aca3021f17542395666a19d19e949" }, "downloads": -1, "filename": "pyutilib.virtualenv-1.4.2.tar.gz", "has_sig": false, "md5_digest": "14f2bacd5998419057c15d9562bc7bad", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 181840, "upload_time": "2010-03-26T04:55:40", "url": "https://files.pythonhosted.org/packages/0d/be/1c2b67db8646c365b86724c57c1af50d83f0d502499f8899a785a98e804f/pyutilib.virtualenv-1.4.2.tar.gz" } ], "1.4.3": [ { "comment_text": "", "digests": { "md5": "e5a74b519f68293dad8fee2c54371800", "sha256": "53d24fa226d2d9c94139f78309505b2f4de67e659a620354563e82344ab36c99" }, "downloads": -1, "filename": "pyutilib.virtualenv-1.4.3.tar.gz", "has_sig": false, "md5_digest": "e5a74b519f68293dad8fee2c54371800", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 181876, "upload_time": "2010-05-06T17:16:59", "url": "https://files.pythonhosted.org/packages/b4/d1/e1ece5d3ddaff7f474828a73959c0878b0ae632d0a23fac2590c27327b99/pyutilib.virtualenv-1.4.3.tar.gz" } ], "1.5": [ { "comment_text": "", "digests": { "md5": "84f27dcf0c5fc7ee6a29ebbdf041b981", "sha256": "ba89bd18c2e01969db28faddb26e2d39d2f78ced7141e339f40dc9ca1a131c5c" }, "downloads": -1, "filename": "pyutilib.virtualenv-1.5.tar.gz", "has_sig": false, "md5_digest": "84f27dcf0c5fc7ee6a29ebbdf041b981", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 183032, "upload_time": "2010-06-13T19:34:18", "url": "https://files.pythonhosted.org/packages/d2/1c/617f4a07aa49b3576f1894ff8da481cf2b1f7ee5f74a3a5d267423ab428d/pyutilib.virtualenv-1.5.tar.gz" } ], "1.5.1": [ { "comment_text": "", "digests": { "md5": "23f782f4118960851ad59034ebac3c5b", "sha256": "012e44ba79c54c9e33d16e90e6a738613edb9bf4c8c17bb7c54f82717dd75bc6" }, "downloads": -1, "filename": "pyutilib.virtualenv-1.5.1.tar.gz", "has_sig": false, "md5_digest": "23f782f4118960851ad59034ebac3c5b", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 183364, "upload_time": "2010-09-06T03:24:41", "url": "https://files.pythonhosted.org/packages/5b/39/6957fb77c01eef29bb90cb8d84eb4cd0314718d4ba2d1cbd5d029207775b/pyutilib.virtualenv-1.5.1.tar.gz" } ], "2.0": [ { "comment_text": "", "digests": { "md5": "66c2e3def966e0ecb13dcbc2adbdcbb5", "sha256": "374847cd4a3e8cdafc9e57bca86a6dfc6aaaa306669314574c133b03e9184491" }, "downloads": -1, "filename": "pyutilib.virtualenv-2.0.tar.gz", "has_sig": false, "md5_digest": "66c2e3def966e0ecb13dcbc2adbdcbb5", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 186710, "upload_time": "2010-11-27T05:46:34", "url": "https://files.pythonhosted.org/packages/54/41/5218a17d53b624f64f3fca6417df349aead16d84114d82700c9f1a6f66a1/pyutilib.virtualenv-2.0.tar.gz" } ], "2.0.1": [ { "comment_text": "", "digests": { "md5": "431af9c7429375d5a79b2ed1b62b0b8a", "sha256": "747109759faa6e40e711466070677665e007b11280a2511e2f3124a3a04e71a2" }, "downloads": -1, "filename": "pyutilib.virtualenv-2.0.1.tar.gz", "has_sig": false, "md5_digest": "431af9c7429375d5a79b2ed1b62b0b8a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 187730, "upload_time": "2010-12-04T01:30:25", "url": "https://files.pythonhosted.org/packages/4f/9a/f78c6c1104ff9764b29476c5c9c6768bc70778b0f49a360a49c6d3518c0d/pyutilib.virtualenv-2.0.1.tar.gz" } ], "2.1": [ { "comment_text": "", "digests": { "md5": "6c051c1e6c6a3b01b6db333f43750806", "sha256": "5a50774de95e2ca2a17d7ab434a4e7fc1dce1c514225d06c7a595894552978c8" }, "downloads": -1, "filename": "pyutilib.virtualenv-2.1.tar.gz", "has_sig": false, "md5_digest": "6c051c1e6c6a3b01b6db333f43750806", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 187737, "upload_time": "2010-12-22T05:15:06", "url": "https://files.pythonhosted.org/packages/68/92/7c03f3a1df2d38d6224811960e7547c99d5b97369a39fcfd314ef5674b09/pyutilib.virtualenv-2.1.tar.gz" } ], "2.2": [ { "comment_text": "", "digests": { "md5": "c1aff47b675a459dbeafb7fb6590293a", "sha256": "c4d0b9ea7020d8f0d55ef99d800cbcb9b5751de84893b96661d9456822adbf32" }, "downloads": -1, "filename": "pyutilib.virtualenv-2.2.tar.gz", "has_sig": false, "md5_digest": "c1aff47b675a459dbeafb7fb6590293a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 188197, "upload_time": "2011-01-19T18:33:31", "url": "https://files.pythonhosted.org/packages/8b/89/2ccd36a2aecac44705886b5b677265d9f8cbc317f8f33d92e1429d9a260f/pyutilib.virtualenv-2.2.tar.gz" } ], "2.3": [ { "comment_text": "", "digests": { "md5": "820cd81bcba33cab1f55b2a70968dd64", "sha256": "9ecf0005bf0ab7193439ad74ce5ea9d9098561f37eaa6b2f8284df0d1b1d944f" }, "downloads": -1, "filename": "pyutilib.virtualenv-2.3.tar.gz", "has_sig": false, "md5_digest": "820cd81bcba33cab1f55b2a70968dd64", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 243979, "upload_time": "2011-03-12T08:41:43", "url": "https://files.pythonhosted.org/packages/5f/fc/bfa917125ab1de66c32cb7fac31bd1f45190730d1c73992726cb64755206/pyutilib.virtualenv-2.3.tar.gz" } ], "2.4": [ { "comment_text": "", "digests": { "md5": "d7607c96359033358d3b8921f1cc2777", "sha256": "782e0e168350498aab5ab078ec7ecb1a7607b3c7670489c44e0608f8f87fbb89" }, "downloads": -1, "filename": "pyutilib.virtualenv-2.4.tar.gz", "has_sig": false, "md5_digest": "d7607c96359033358d3b8921f1cc2777", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 245787, "upload_time": "2011-03-25T17:17:38", "url": "https://files.pythonhosted.org/packages/25/47/f93116d2a43d08c8e3b821223b66b4e2ad06d561d4d1052bbbb70bf54407/pyutilib.virtualenv-2.4.tar.gz" } ], "2.4.1": [ { "comment_text": "", "digests": { "md5": "ed90a76c3813c722224c5bb70eacc783", "sha256": "7fc9ab390ab8d5756ca9c92500c45e12959c17cc5012151c0fa0d0e9f2cc172f" }, "downloads": -1, "filename": "pyutilib.virtualenv-2.4.1.tar.gz", "has_sig": false, "md5_digest": "ed90a76c3813c722224c5bb70eacc783", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 245903, "upload_time": "2011-04-07T05:30:13", "url": "https://files.pythonhosted.org/packages/12/e6/1a03b54134b3dccbff29ced57c25dd3ee3f0efe695cba0418d5364edc81e/pyutilib.virtualenv-2.4.1.tar.gz" } ], "2.5": [ { "comment_text": "", "digests": { "md5": "46e035574e6a2af3fc50fe2d48f96fcc", "sha256": "2fbb7b1f795ec8b6803e9fee32f586bbe91d735509278e910f7db67b6aac6a94" }, "downloads": -1, "filename": "pyutilib.virtualenv-2.5.tar.gz", "has_sig": false, "md5_digest": "46e035574e6a2af3fc50fe2d48f96fcc", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 81477, "upload_time": "2011-06-20T01:55:35", "url": "https://files.pythonhosted.org/packages/52/0f/538b9dcf4ed9d30c51fd2e55340b1e85e1fff7ab505004ed7dcbee059ce9/pyutilib.virtualenv-2.5.tar.gz" } ], "2.7": [ { "comment_text": "", "digests": { "md5": "ca14052b03c3410f2b98dfe9dbfe9b5e", "sha256": "37c52242ced9058deb25f6891cef6ec04371108b5dd3fc86a651daa9c5e477aa" }, "downloads": -1, "filename": "pyutilib.virtualenv-2.7.tar.gz", "has_sig": false, "md5_digest": "ca14052b03c3410f2b98dfe9dbfe9b5e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 82358, "upload_time": "2011-11-10T15:02:00", "url": "https://files.pythonhosted.org/packages/67/4a/89f30864030a5dc6c399ff4bd55239fc1a89fca57303867a6f20fa4c8e1f/pyutilib.virtualenv-2.7.tar.gz" } ], "2.8": [ { "comment_text": "", "digests": { "md5": "d9631dacd895fbe0186103c882c5b79d", "sha256": "726848c1be4d4ef6efefbda86323c141db4818d5bc4f3880350a13e8684026dc" }, "downloads": -1, "filename": "pyutilib.virtualenv-2.8.tar.gz", "has_sig": false, "md5_digest": "d9631dacd895fbe0186103c882c5b79d", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 260456, "upload_time": "2012-01-29T08:07:37", "url": "https://files.pythonhosted.org/packages/e7/49/ddf02b819cc89af329b548e59d03d41b5a2f5508b38c71b79e92cecc893c/pyutilib.virtualenv-2.8.tar.gz" } ], "2.9": [ { "comment_text": "", "digests": { "md5": "37a0c0e92cb3ed55ab339066b4804b76", "sha256": "dfcfa43007f9bbe9ac987412022fecd8c9389d4aab68cb8512e54e5ee79a590e" }, "downloads": -1, "filename": "pyutilib.virtualenv-2.9.tar.gz", "has_sig": false, "md5_digest": "37a0c0e92cb3ed55ab339066b4804b76", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 83814, "upload_time": "2012-04-14T06:23:49", "url": "https://files.pythonhosted.org/packages/21/d7/a0e1180ef380458dcace4ed89f99290d2e2199d423560f4acc836e94e085/pyutilib.virtualenv-2.9.tar.gz" } ], "3.0": [ { "comment_text": "", "digests": { "md5": "33572a26834e0bfbeea2a08f3c7d166a", "sha256": "6fab0bf95cc62d4d04b52baee178bb5efeaa50322dd0dd5b5600bda6c0164059" }, "downloads": -1, "filename": "pyutilib.virtualenv-3.0.tar.gz", "has_sig": false, "md5_digest": "33572a26834e0bfbeea2a08f3c7d166a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 266594, "upload_time": "2012-04-23T09:13:53", "url": "https://files.pythonhosted.org/packages/99/68/68a38896b1226b6346660727ccfc2c6c19d97e39793a034e4a9eec221d21/pyutilib.virtualenv-3.0.tar.gz" } ], "3.1": [ { "comment_text": "", "digests": { "md5": "74e3c4b917f25948d16acb2f69b94678", "sha256": "1914c2d5f865193c4446c0fd27f5cc173a501ea76c78be5c83d3194116a6ff66" }, "downloads": -1, "filename": "pyutilib.virtualenv-3.1.tar.gz", "has_sig": false, "md5_digest": "74e3c4b917f25948d16acb2f69b94678", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 276486, "upload_time": "2012-08-01T04:55:26", "url": "https://files.pythonhosted.org/packages/54/06/330a00c0fef7d9bfb165c0cf5af023fe023121e746ab9b31e116169c822b/pyutilib.virtualenv-3.1.tar.gz" } ], "3.1.1": [ { "comment_text": "", "digests": { "md5": "7780ce8dfa9ccf01820d2362654e24de", "sha256": "67be4df5a2cf4ae39fdb3d351ca2b6972d087871643ca87a51b6edc070f4147b" }, "downloads": -1, "filename": "pyutilib.virtualenv-3.1.1.tar.gz", "has_sig": false, "md5_digest": "7780ce8dfa9ccf01820d2362654e24de", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 279998, "upload_time": "2012-08-31T03:13:55", "url": "https://files.pythonhosted.org/packages/bb/64/8b48a1e902910e42e04eacfdb18ba495f54741c67d6a1bd3457deef7f031/pyutilib.virtualenv-3.1.1.tar.gz" } ], "3.2": [ { "comment_text": "", "digests": { "md5": "08194a7cfb960c02ee1852080276a106", "sha256": "5f6379213586594601a7bcd24eb475c94672411be1759e88232e8052cbe5701d" }, "downloads": -1, "filename": "pyutilib.virtualenv-3.2.tar.gz", "has_sig": false, "md5_digest": "08194a7cfb960c02ee1852080276a106", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 282018, "upload_time": "2012-12-27T00:08:51", "url": "https://files.pythonhosted.org/packages/dd/a5/d216c442ae10915635db421f3939064eeda4597a532dc41ac3efc0013f59/pyutilib.virtualenv-3.2.tar.gz" } ], "3.3": [ { "comment_text": "", "digests": { "md5": "c5ba562551fc6563088caa33e3d39644", "sha256": "f00405776545984f4b4986a6e26b3a303e2b3f6f84bd6caf6e289e1e02befb95" }, "downloads": -1, "filename": "pyutilib.virtualenv-3.3.tar.gz", "has_sig": false, "md5_digest": "c5ba562551fc6563088caa33e3d39644", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 215439, "upload_time": "2013-02-12T05:45:50", "url": "https://files.pythonhosted.org/packages/29/a5/b8985a2099a7ee8fcebdc7d50107395d98237274aa8ca091febe9ba2fead/pyutilib.virtualenv-3.3.tar.gz" } ], "4.0": [ { "comment_text": "", "digests": { "md5": "2412671d4106bb2c222f31bbbbce7d59", "sha256": "8e726e6ae5b74df0e2ad63f2b40f0cacab977bda810401444507651fb0c0aa07" }, "downloads": -1, "filename": "pyutilib.virtualenv-4.0.tar.gz", "has_sig": false, "md5_digest": "2412671d4106bb2c222f31bbbbce7d59", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 215220, "upload_time": "2013-02-28T02:51:19", "url": "https://files.pythonhosted.org/packages/6d/1a/48cdf751dce7c1748a2a27f55afbff9acf1faad80b578142665772c79bfd/pyutilib.virtualenv-4.0.tar.gz" } ], "4.0.1": [ { "comment_text": "", "digests": { "md5": "10e8eaf00f05f06bd8a0f4932fa5afea", "sha256": "6905228ca8561068aa439164ee88e4f2ff47694be385a345dfd8167d34b90e55" }, "downloads": -1, "filename": "pyutilib.virtualenv-4.0.1.tar.gz", "has_sig": false, "md5_digest": "10e8eaf00f05f06bd8a0f4932fa5afea", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 100405, "upload_time": "2013-05-31T21:40:00", "url": "https://files.pythonhosted.org/packages/2e/73/4e04ec89d1402392cf430bde4f56b82ad21b99dfcf40db71969649d905f0/pyutilib.virtualenv-4.0.1.tar.gz" } ], "4.2": [ { "comment_text": "", "digests": { "md5": "7f3932bb4a0df8f83aae02784a911019", "sha256": "e0c2b44a7e0bb6479bb52382cc88711f81009818a52d3945c433f072830d9972" }, "downloads": -1, "filename": "pyutilib.virtualenv-4.2.tar.gz", "has_sig": false, "md5_digest": "7f3932bb4a0df8f83aae02784a911019", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 101704, "upload_time": "2013-09-28T00:28:01", "url": "https://files.pythonhosted.org/packages/ba/0b/1af1676d854d621e1a749a9e033fa78a4f7c1aac5cf8cde47c9772eccb61/pyutilib.virtualenv-4.2.tar.gz" } ], "4.3.4": [ { "comment_text": "", "digests": { "md5": "6219ac7fcc8798968967f69197d12fa3", "sha256": "634cda4bdeaeeb7d7c52e14f480b29eaa1dfec2bc3687a3f3445fc3b40b66b30" }, "downloads": -1, "filename": "pyutilib.virtualenv-4.3.4-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "6219ac7fcc8798968967f69197d12fa3", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 7046823, "upload_time": "2014-05-25T16:56:59", "url": "https://files.pythonhosted.org/packages/b4/ee/dcc86f553f8567350b763e50d4a256341a1d54b84a690d9e1947b6e03f51/pyutilib.virtualenv-4.3.4-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "46544aabb1cf60df8cc8ea65470c373a", "sha256": "659a19d2db50e5ae030ee4c9f74c177f3ddb99a339d3e09c00697525b6e5ba6e" }, "downloads": -1, "filename": "pyutilib.virtualenv-4.3.4.tar.gz", "has_sig": false, "md5_digest": "46544aabb1cf60df8cc8ea65470c373a", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7043435, "upload_time": "2014-05-25T16:55:43", "url": "https://files.pythonhosted.org/packages/f3/bc/3dd5dd8278a3a896a4f4aa69b6c6c631406ce62d3fe5ccd3ab526925a6a8/pyutilib.virtualenv-4.3.4.tar.gz" } ], "4.4": [ { "comment_text": "", "digests": { "md5": "a7d8de661afaff4148823e9cbd70af8e", "sha256": "4518c51206204b4c01a5c0436ee9c85fe4ef8370b3856fc8bf16738af7188936" }, "downloads": -1, "filename": "pyutilib.virtualenv-4.4.tar.gz", "has_sig": false, "md5_digest": "a7d8de661afaff4148823e9cbd70af8e", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6531744, "upload_time": "2014-12-05T05:17:44", "url": "https://files.pythonhosted.org/packages/f6/9d/2d9f362f75c62ea3209f1a14008c36eea98234088f642641af821a2d22ac/pyutilib.virtualenv-4.4.tar.gz" } ], "4.5": [ { "comment_text": "", "digests": { "md5": "c3f948c92cf989f36f50ac797aea6529", "sha256": "0ff1d5b907f42d8ae3cdfa7b7f10e393f3601c923e27d369c50f20fd8629a24f" }, "downloads": -1, "filename": "pyutilib.virtualenv-4.5-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "c3f948c92cf989f36f50ac797aea6529", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6712896, "upload_time": "2015-11-15T17:44:52", "url": "https://files.pythonhosted.org/packages/d0/3b/9573ccb3630edaadf1947d1732e2cd0677549eb54e436171758ad1268486/pyutilib.virtualenv-4.5-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "14db597411f71756ae9d9d67488c5487", "sha256": "2ecf010f21875f09c0b1a547d06a1a010ea77edc6261562458438531f9238456" }, "downloads": -1, "filename": "pyutilib.virtualenv-4.5.tar.gz", "has_sig": false, "md5_digest": "14db597411f71756ae9d9d67488c5487", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6709637, "upload_time": "2015-11-15T17:42:36", "url": "https://files.pythonhosted.org/packages/67/0c/18564b57041afcaa6413722ab151a9dfae135de101afe82090b9a080be22/pyutilib.virtualenv-4.5.tar.gz" } ], "4.5.1": [ { "comment_text": "", "digests": { "md5": "4ee5e0ed1142c30c43c29802bccbe2da", "sha256": "5af9ef1a38958177d4e5a902eec3f9d04037277d1bb436fa7efcc4e38ab51176" }, "downloads": -1, "filename": "pyutilib.virtualenv-4.5.1-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "4ee5e0ed1142c30c43c29802bccbe2da", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 6712885, "upload_time": "2015-11-15T18:34:55", "url": "https://files.pythonhosted.org/packages/5d/05/8744aba0111c3f220c8a1542bfbf1edfde56c2709968219f7ea43fbb7699/pyutilib.virtualenv-4.5.1-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "7756cd429fff317c5e5d896b27a51b99", "sha256": "5c97b4b7834604db45bf1421aa2874058074de07d83588bfb29e0707220edc0b" }, "downloads": -1, "filename": "pyutilib.virtualenv-4.5.1.tar.gz", "has_sig": false, "md5_digest": "7756cd429fff317c5e5d896b27a51b99", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 6709596, "upload_time": "2015-11-15T18:32:08", "url": "https://files.pythonhosted.org/packages/bf/ab/6001fc0a2b378b84ad444a1f2d87b4c1dbe469025264159fa215cfc7493e/pyutilib.virtualenv-4.5.1.tar.gz" } ], "4.7": [ { "comment_text": "", "digests": { "md5": "11940381dc676771c6a5c5f0b5e4939b", "sha256": "6fe5e77bad120dd834ca8789893e1993746a258a8afb4a6c5af979f1ef3f95fd" }, "downloads": -1, "filename": "pyutilib.virtualenv-4.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "11940381dc676771c6a5c5f0b5e4939b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 7204310, "upload_time": "2016-01-24T13:51:38", "url": "https://files.pythonhosted.org/packages/dd/66/1681677c546de0a449b5c329597c28b3d79088f729fb4e2414c9b4bd15d4/pyutilib.virtualenv-4.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4537eedccd08a6c377d60f55408a8770", "sha256": "a547244ef7d5c198166d923e391dea4b4fcb8f52f51555c8f8ba2fa45bf433d8" }, "downloads": -1, "filename": "pyutilib.virtualenv-4.7.tar.gz", "has_sig": false, "md5_digest": "4537eedccd08a6c377d60f55408a8770", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7200975, "upload_time": "2016-01-24T13:51:13", "url": "https://files.pythonhosted.org/packages/52/7d/e84ab9282b6be28dbc192a70e1ca6b1b827cdb7497fb8cb419b5704737e7/pyutilib.virtualenv-4.7.tar.gz" } ] }, "urls": [ { "comment_text": "", "digests": { "md5": "11940381dc676771c6a5c5f0b5e4939b", "sha256": "6fe5e77bad120dd834ca8789893e1993746a258a8afb4a6c5af979f1ef3f95fd" }, "downloads": -1, "filename": "pyutilib.virtualenv-4.7-py2.py3-none-any.whl", "has_sig": false, "md5_digest": "11940381dc676771c6a5c5f0b5e4939b", "packagetype": "bdist_wheel", "python_version": "2.7", "requires_python": null, "size": 7204310, "upload_time": "2016-01-24T13:51:38", "url": "https://files.pythonhosted.org/packages/dd/66/1681677c546de0a449b5c329597c28b3d79088f729fb4e2414c9b4bd15d4/pyutilib.virtualenv-4.7-py2.py3-none-any.whl" }, { "comment_text": "", "digests": { "md5": "4537eedccd08a6c377d60f55408a8770", "sha256": "a547244ef7d5c198166d923e391dea4b4fcb8f52f51555c8f8ba2fa45bf433d8" }, "downloads": -1, "filename": "pyutilib.virtualenv-4.7.tar.gz", "has_sig": false, "md5_digest": "4537eedccd08a6c377d60f55408a8770", "packagetype": "sdist", "python_version": "source", "requires_python": null, "size": 7200975, "upload_time": "2016-01-24T13:51:13", "url": "https://files.pythonhosted.org/packages/52/7d/e84ab9282b6be28dbc192a70e1ca6b1b827cdb7497fb8cb419b5704737e7/pyutilib.virtualenv-4.7.tar.gz" } ] }