{
"info": {
"author": "David Marble",
"author_email": "davidmarble@gmail.com",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.4",
"Programming Language :: Python :: 2.5",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.0",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4"
],
"description": "virtualenvwrapper-win\r\n=====================\r\n\r\nThis is a port of Doug Hellmann's `virtualenvwrapper `_\r\nto Windows batch scripts. The idea behind virtualenvwrapper is to ease usage of\r\nIan Bicking's `virtualenv `_, a tool\r\nfor creating isolated Python virtual environments, each with their own libraries\r\nand site-packages.\r\n\r\nThese scripts should work on any version of Windows (Windows XP, Windows Vista, Windows 7/8/10).\r\n\r\nHowever, they only work in the **regular command prompt**. They **will not work in Powershell.** There are other virtualenvwrapper projects out there for Powershell.\r\n\r\n\r\nInstallation\r\n------------\r\n**For Windows only**\r\n\r\nTo use these scripts from any directory, make sure the ``Scripts`` subdirectory of Python is in your PATH. For example, if python is installed in ``C:\\Python27\\``, you should make sure ``C:\\Python27\\Scripts`` is in your PATH.\r\n\r\nTo install, run one of the following::\r\n\r\n # using pip\r\n pip install virtualenvwrapper-win\r\n\r\n # using easy_install\r\n easy_install virtualenvwrapper-win\r\n\r\n # from source\r\n git clone git://github.com/davidmarble/virtualenvwrapper-win.git\r\n cd virtualenvwrapper-win\r\n python setup.py install # or pip install .\r\n\r\n\r\n**WORKON_HOME (Optional)**\r\n~~~~~~~~~~~~~~~~~~~~~~~~~~\r\nAdd an environment variable WORKON_HOME to specify the path to store environments.\r\nBy default, this is ``%USERPROFILE%\\Envs``.\r\n\r\n**pywin (Optional)**\r\n~~~~~~~~~~~~~~~~~~~~\r\n**pywin** python version switcher (not included)\r\n\r\nIf you use several versions of python, you can switch between them\r\nusing a separate project `pywin\r\n`_. It's a lightweight\r\npython 2.5-3.3 launcher and switcher I wrote for the Windows\r\ncommand line and MSYS/MINGW32. It's similar to the `py.exe\r\nlauncher/switcher available in python 3.3\r\n`_, but\r\nwritten with basic Windows batch scripts and a shell script for\r\nMSYS/MINGW32 support. I use bash and command line shell tools from\r\n`msysgit `_, based on MSYS/MINGW32, to\r\ndo most of my python development on Windows.\r\n\r\nMain Commands\r\n-------------\r\n``mkvirtualenv [mkvirtualenv-options] [virtualenv-options] ``\r\n Create a new virtualenv environment named **. The environment will\r\n be created in WORKON_HOME.\r\n\r\n ``mkvirtualenv`` options:\r\n -h Print help text.\r\n -a project_path Associate existing path as project directory\r\n -i package Install package in new environment. This option\r\n can be repeated to install more than one package.\r\n -r requirements_file requirements_file is passed to\r\n pip install -r requirements_file\r\n\r\n any other options are passed on to the ``virtualenv`` command. \r\n\r\n``lsvirtualenv``\r\n List all of the enviornments stored in WORKON_HOME.\r\n\r\n``rmvirtualenv ``\r\n Remove the environment **.\r\n\r\n``workon []``\r\n If ** is specified, activate the environment named ** (change\r\n the working virtualenv to **). If a project directory has been\r\n defined, we will change into it. If no argument is specified, list the\r\n available environments. One can pass additional option -c after\r\n virtualenv name to cd to virtualenv directory if no projectdir is set.\r\n\r\n``deactivate``\r\n Deactivate the working virtualenv and switch back to the default system\r\n Python.\r\n\r\n``add2virtualenv ``\r\n If a virtualenv environment is active, appends ** to\r\n ``virtualenv_path_extensions.pth`` inside the environment's site-packages,\r\n which effectively adds ** to the environment's PYTHONPATH.\r\n If a virtualenv environment is not active, appends ** to\r\n ``virtualenv_path_extensions.pth`` inside the default Python's\r\n site-packages. If ** doesn't exist, it will be created.\r\n\r\nConvenience Commands\r\n--------------------\r\n``cdproject``\r\n If a virtualenv environment is active and a projectdir has been defined,\r\n change the current working directory to active virtualenv's project directory.\r\n ``cd-`` will return you to the last directory you were in before calling\r\n ``cdproject``.\r\n\r\n``cdsitepackages``\r\n If a virtualenv environment is active, change the current working\r\n directory to the active virtualenv's site-packages directory. If\r\n a virtualenv environment is not active, change the current working\r\n directory to the default Python's site-packages directory. ``cd-``\r\n will return you to the last directory you were in before calling\r\n ``cdsitepackages``.\r\n\r\n``cdvirtualenv``\r\n If a virtualenv environment is active, change the current working\r\n directory to the active virtualenv base directory. If a virtualenv\r\n environment is not active, change the current working directory to\r\n the base directory of the default Python. ``cd-`` will return you\r\n to the last directory you were in before calling ``cdvirtualenv``.\r\n\r\n``lssitepackages``\r\n If a virtualenv environment is active, list that environment's\r\n site-packages. If a virtualenv environment is not active, list the\r\n default Python's site-packages. Output includes a basic listing of\r\n the site-packages directory, the contents of easy-install.pth,\r\n and the contents of virtualenv_path_extensions.pth (used by\r\n ``add2virtualenv``).\r\n\r\n``mkproject``\r\n If the environment variable PROJECT_HOME is set, create a new project \r\n directory in PROJECT_HOME and a virtualenv in WORKON_HOME. The project path\r\n will automatically be associated with the virtualenv on creation.\r\n\r\n``setprojectdir ``\r\n If a virtualenv environment is active, define ** as project\r\n directory containing the source code. This allows the use of ``cdproject``\r\n to change the working directory. In addition, the directory will be\r\n added to the environment using ``add2virtualenv``. If ** doesn't\r\n exist, it will be created.\r\n\r\n``toggleglobalsitepackages``\r\n If a virtualenv environment is active, toggle between having the\r\n global site-packages in the PYTHONPATH or just the virtualenv's\r\n site-packages.\r\n\r\n``whereis ``\r\n A script included for convenience. Returns the locations (on `%PATH%`)\r\n that contain an executable `file`. You can call\r\n ``whereis python`` to find all executables starting with ``python`` or\r\n ``whereis python.exe`` for an exact match.\r\n\r\n\r\n``virtualenvwrapper``\r\n Print a list of commands and their descriptions as basic help output.\r\n (added in v.1.2.4)\r\n\r\nHooks\r\n-----\r\nTo run some commands after ``mkvirtualenv`` you can use hooks. First\r\nyou need to define ``VIRTUALENVWRAPPER_HOOK_DIR`` variable. If it is\r\nset ``mkvirtualenv`` will run ``postmkvirtualenv.bat`` script from\r\nthat directory.\r\n\r\n.. please add any noteable changes here as part of a PR\r\n\r\nChanges\r\n=======\r\n\r\nVersion \r\n--------------\r\n\r\n\r\nVersion 1.2.4\r\n-------------\r\n* Fixed problems with spaces in workon, rmvirtualenv, mkproject, mkvirtualenv -a\r\n when the virtualenv name or project directory contained spaces (#89). @thebjorn\r\n* Fixed problems with spaces etc. in add2virtualenv and setprojectdir (#92, #93) @thebjorn\r\n* Added mkproject convenience script (@thehug0naut)\r\n* folder_delete.bat is deprecated and will be removed in a future version.\r\n You should be using `rmdir %dirname% /s /q` instead.\r\n\r\nVersion 1.2.3\r\n-------------\r\n* Fixed a problem when the WORKON_HOME folder contained spaces.\r\n* Fixed a bug where cmd.com couldn't pass the Python executable to virtualenv\r\n if the path included the drive letter.\r\n* Improved publish pipeline.\r\n\r\nVersion 1.2.2\r\n-------------\r\n* -a, -i, and -r options are now available (@thebjorn)\r\n* added rudimentary test-suite (@thebjorn)\r\n* fix ``rmvirtualenv`` command which didn't delete directory when\r\n e.g. pip left extra files (@rcutmore)\r\n\r\nVersion 1.2.1\r\n-------------\r\n* scripts are now left in Scripts directory (@adamc55)\r\n\r\nVersion 1.2.0 (16-03-2015)\r\n--------------------------\r\n\r\nThanks to Christian Long (@christianmlong)\r\n* ``mkvirtualenv`` hooks\r\n\r\n\r\n",
"description_content_type": null,
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/davidmarble/virtualenvwrapper-win/",
"keywords": "setuptools deployment installation distutils virtualenv virtualenvwrapper",
"license": "BSD 3-clause",
"maintainer": "",
"maintainer_email": "",
"name": "virtualenvwrapper-win",
"package_url": "https://pypi.org/project/virtualenvwrapper-win/",
"platform": "WIN32",
"project_url": "https://pypi.org/project/virtualenvwrapper-win/",
"project_urls": {
"Homepage": "https://github.com/davidmarble/virtualenvwrapper-win/"
},
"release_url": "https://pypi.org/project/virtualenvwrapper-win/1.2.5/",
"requires_dist": [
"virtualenv"
],
"requires_python": "",
"summary": "Port of Doug Hellmann's virtualenvwrapper to Windows batch scripts",
"version": "1.2.5"
},
"last_serial": 3398521,
"releases": {
"1.0.0": [
{
"comment_text": "",
"digests": {
"md5": "200004aa2721ff3d0db13415b83bbff8",
"sha256": "1e3327966b72e3073cd3c7d1d9d42175b756241a85300b52c3d5d34eb8151606"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.0.0.zip",
"has_sig": false,
"md5_digest": "200004aa2721ff3d0db13415b83bbff8",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10113,
"upload_time": "2012-02-29T22:47:37",
"url": "https://files.pythonhosted.org/packages/52/2d/9eba183c84095d323a3ae0b1e04a4b501f3c48b7b153146c090a5fcbe1eb/virtualenvwrapper-win-1.0.0.zip"
}
],
"1.0.1": [
{
"comment_text": "",
"digests": {
"md5": "dacacef0eb8b5731e989dd47ff9e2d66",
"sha256": "8eff7f8f5eee93271ae84b6c8607ace7775f093a54cc8d17b64a029ca236a344"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.0.1.zip",
"has_sig": false,
"md5_digest": "dacacef0eb8b5731e989dd47ff9e2d66",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 10115,
"upload_time": "2012-02-29T22:55:46",
"url": "https://files.pythonhosted.org/packages/43/70/ae78918ddbc8eeb18b270161706c6f39a91ad40623d8526f95da34c06921/virtualenvwrapper-win-1.0.1.zip"
}
],
"1.0.2": [
{
"comment_text": "",
"digests": {
"md5": "369bb5bef612abff8bc4287943fd34f6",
"sha256": "1d8a1efb3f1b4112a07ba185dcc88db34ededba2744a8d41b000aeb0b26fbb60"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.0.2.zip",
"has_sig": false,
"md5_digest": "369bb5bef612abff8bc4287943fd34f6",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 11466,
"upload_time": "2012-03-21T01:13:02",
"url": "https://files.pythonhosted.org/packages/6e/98/05c01bfde5a5bdf2852e11e82b3af2d2d9b4115369f7f9e15ea9bcfb19de/virtualenvwrapper-win-1.0.2.zip"
}
],
"1.0.3": [
{
"comment_text": "",
"digests": {
"md5": "b32bf1bbaae51388e3d6b280e2864d52",
"sha256": "883e7b9c1b01d879165d63d9c1d00f0063700b6609203ba715ad653072ba4339"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.0.3.zip",
"has_sig": false,
"md5_digest": "b32bf1bbaae51388e3d6b280e2864d52",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13395,
"upload_time": "2012-04-03T19:40:10",
"url": "https://files.pythonhosted.org/packages/cf/5f/6f534d76a7f226816b545667b1911073df89d098e142a6bcc926a23a1c9e/virtualenvwrapper-win-1.0.3.zip"
}
],
"1.0.4": [
{
"comment_text": "",
"digests": {
"md5": "3823da590879d3810d6b2fd4f27e096f",
"sha256": "28e51aec03de384d1f3cbec28fc82e2b5dfa9a468f8cc82da777dd0f6c67ecd2"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.0.4.zip",
"has_sig": false,
"md5_digest": "3823da590879d3810d6b2fd4f27e096f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 13381,
"upload_time": "2012-04-03T20:44:58",
"url": "https://files.pythonhosted.org/packages/28/24/993699f57c9b4f8ed41a2af63486fb57d2adf52610eed20fdcf0640a4416/virtualenvwrapper-win-1.0.4.zip"
}
],
"1.0.5": [
{
"comment_text": "",
"digests": {
"md5": "b70666db344075622603dd7e8ea1fb3a",
"sha256": "586d6e9bc1d2731817f55df94a654407afcdf0baa0149898948fcb13d5185a71"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.0.5.zip",
"has_sig": false,
"md5_digest": "b70666db344075622603dd7e8ea1fb3a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14676,
"upload_time": "2012-04-21T21:56:21",
"url": "https://files.pythonhosted.org/packages/5e/0f/d406f84910c7648885297f76583f6c758bce456563c4f3a8a09fa010c314/virtualenvwrapper-win-1.0.5.zip"
}
],
"1.0.6": [
{
"comment_text": "",
"digests": {
"md5": "8b546adadddcd643d9b0931b173abff2",
"sha256": "cb5ab82e555e9ed0a3b72af13c347a8d9d1b697868b48a8dfb2c3467eab5f97f"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.0.6.zip",
"has_sig": false,
"md5_digest": "8b546adadddcd643d9b0931b173abff2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14672,
"upload_time": "2012-04-21T22:07:16",
"url": "https://files.pythonhosted.org/packages/34/f1/3931faf87e86e25ed58c27c0e1b99a105941ef2032df1be7236aa5dfb6dc/virtualenvwrapper-win-1.0.6.zip"
}
],
"1.0.7": [
{
"comment_text": "",
"digests": {
"md5": "4107c7f4891861c834ce7f0a7a42dae9",
"sha256": "4445280e89f3fa695b2ff12fedc4540536823eb9b44054ef8245dd52ce6fa505"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.0.7.zip",
"has_sig": false,
"md5_digest": "4107c7f4891861c834ce7f0a7a42dae9",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14791,
"upload_time": "2012-04-23T18:08:57",
"url": "https://files.pythonhosted.org/packages/da/8b/47b1570ebde88d28f6da2fc0bc43fd3c050049f17c12f27dfb0b67378c1f/virtualenvwrapper-win-1.0.7.zip"
}
],
"1.0.8": [
{
"comment_text": "",
"digests": {
"md5": "5a7d11528bf739bd86fbc067ba82602a",
"sha256": "a8727a32c31df9137c75c5093f515eae02514badded87cb16e87c9373a575671"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.0.8.zip",
"has_sig": false,
"md5_digest": "5a7d11528bf739bd86fbc067ba82602a",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 14985,
"upload_time": "2012-04-23T18:28:30",
"url": "https://files.pythonhosted.org/packages/78/7f/3989fc44fb52526e21fc06a5c88924288f26031928213066674bff1fd747/virtualenvwrapper-win-1.0.8.zip"
}
],
"1.0.9": [
{
"comment_text": "",
"digests": {
"md5": "3f79c140b655ec0a2b43374d3c226a5f",
"sha256": "5dbd4d5b126d5a0ca66f452bb261c27385874de6286003578e42aeca5c0ea2ea"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.0.9.zip",
"has_sig": false,
"md5_digest": "3f79c140b655ec0a2b43374d3c226a5f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 15010,
"upload_time": "2012-08-13T23:36:13",
"url": "https://files.pythonhosted.org/packages/ab/2d/529d9c98e41394d4001720846a1415483200f27c91222b7168accb9565a1/virtualenvwrapper-win-1.0.9.zip"
}
],
"1.1.3": [
{
"comment_text": "",
"digests": {
"md5": "c5b987d0d8f7678e0f9ea7e52c4c9213",
"sha256": "5c4f9ce7bb3bd294efcb6742f157402c4d1f07de054cd8b1aa646b815efb6942"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.1.3.zip",
"has_sig": false,
"md5_digest": "c5b987d0d8f7678e0f9ea7e52c4c9213",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23192,
"upload_time": "2013-03-31T00:39:07",
"url": "https://files.pythonhosted.org/packages/65/cd/dccea14df95ea17185350c9acc364237bf62ec649f82ddff86adc3b7bce3/virtualenvwrapper-win-1.1.3.zip"
}
],
"1.1.4": [
{
"comment_text": "",
"digests": {
"md5": "b28bddb9262c767eec6ee17534f20fc1",
"sha256": "39db0814951a16598f10da3ce4f7b7d41910d4aeec762167b2d3ba831db8116c"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.1.4.zip",
"has_sig": false,
"md5_digest": "b28bddb9262c767eec6ee17534f20fc1",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23107,
"upload_time": "2013-05-17T02:57:46",
"url": "https://files.pythonhosted.org/packages/0d/28/ddbe2aa209eb81db86871d062850f6b1c4fdb57994246be725dab885985a/virtualenvwrapper-win-1.1.4.zip"
}
],
"1.1.5": [
{
"comment_text": "",
"digests": {
"md5": "0494dd281c82f6efc5017645c4bfacf0",
"sha256": "d513ae02730e49db1ee973c4eab3b2eafa92d38a1655c9cb63aea2b7f0454523"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.1.5.zip",
"has_sig": false,
"md5_digest": "0494dd281c82f6efc5017645c4bfacf0",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23229,
"upload_time": "2013-06-18T16:21:45",
"url": "https://files.pythonhosted.org/packages/f0/83/6eb5d3fd4a08877f1a1e61f52ad5c4cd12ab32d7b69d27346618d00d0016/virtualenvwrapper-win-1.1.5.zip"
}
],
"1.1.6": [
{
"comment_text": "",
"digests": {
"md5": "b078cc19d01d72d5b9b9d6ebdd79cd2f",
"sha256": "905e3e457aa260850473327abe0c11b551fb753b8e0f6e0c7a1a86c50b0d4464"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.1.6.zip",
"has_sig": false,
"md5_digest": "b078cc19d01d72d5b9b9d6ebdd79cd2f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23288,
"upload_time": "2015-02-24T20:11:03",
"url": "https://files.pythonhosted.org/packages/b1/3e/2458caa0cc8dc84bf36e0ab24417f1a00452097f23d059ce847b6d69643e/virtualenvwrapper-win-1.1.6.zip"
}
],
"1.1.7": [
{
"comment_text": "",
"digests": {
"md5": "6a393c741fb598edc79d468569f823b2",
"sha256": "4dcb1a2fb3d37654ab6004d09f520ca46fb46ee0d51c5a89d2d1ac96fab84223"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.1.7.zip",
"has_sig": false,
"md5_digest": "6a393c741fb598edc79d468569f823b2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23552,
"upload_time": "2015-03-08T14:11:47",
"url": "https://files.pythonhosted.org/packages/72/85/8e92ca2d7f5a75dd2d8e5303e5fe12e497be9c8b28dd05ef0776ccb35d78/virtualenvwrapper-win-1.1.7.zip"
}
],
"1.2.0": [
{
"comment_text": "",
"digests": {
"md5": "ced7784cde6cc2d825e31ff308fbd863",
"sha256": "ed80061b3682ad1bff45840e1a01f642e3ae832b46c61a63600c33df23b76e3b"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.2.0.zip",
"has_sig": false,
"md5_digest": "ced7784cde6cc2d825e31ff308fbd863",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 24343,
"upload_time": "2015-03-16T21:33:00",
"url": "https://files.pythonhosted.org/packages/87/fc/38fbc32111d86659e0aeee3e8455ff1841a7c5245e7e64994033f1687b4e/virtualenvwrapper-win-1.2.0.zip"
}
],
"1.2.1": [
{
"comment_text": "",
"digests": {
"md5": "26e16b4c64d2060198789d3f066247e4",
"sha256": "0e0f2201178395f52d8acd813da0db17698a63d9b981f233940223265c85679e"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.2.1.zip",
"has_sig": false,
"md5_digest": "26e16b4c64d2060198789d3f066247e4",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 23946,
"upload_time": "2015-06-19T06:59:31",
"url": "https://files.pythonhosted.org/packages/af/f1/d2fbc0c65353e3aaa02dd414102158f097abe77c34df48e864ee7afef822/virtualenvwrapper-win-1.2.1.zip"
}
],
"1.2.2": [
{
"comment_text": "",
"digests": {
"md5": "5ea71244c0c048796dd7fd493838239d",
"sha256": "bc92e4217cfe491105fb6e62f285c5de7f85a69bb01d40a1b9cfdc564d09089c"
},
"downloads": -1,
"filename": "virtualenvwrapper_win-1.2.2-py2-none-any.whl",
"has_sig": false,
"md5_digest": "5ea71244c0c048796dd7fd493838239d",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 17309,
"upload_time": "2017-10-29T01:51:00",
"url": "https://files.pythonhosted.org/packages/d3/1d/7cb3178d3e5c851c43e2a205b93a0f80b0da4bd80ead624950def1d99c95/virtualenvwrapper_win-1.2.2-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "c0fd5d967a397d8e707c1eb337a439c5",
"sha256": "e3cfabcda032474274211faed717ce04aa67faeaaa5d9467ffd3d62fe2151052"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.2.2.tar.gz",
"has_sig": false,
"md5_digest": "c0fd5d967a397d8e707c1eb337a439c5",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 16955,
"upload_time": "2017-09-17T15:31:23",
"url": "https://files.pythonhosted.org/packages/16/0a/4a771999e044cac9a53014766185499dad16db6d90a06f4380d838fd2e00/virtualenvwrapper-win-1.2.2.tar.gz"
}
],
"1.2.3": [
{
"comment_text": "",
"digests": {
"md5": "11c2911691202f11e02c3a2e36b603f7",
"sha256": "4659f7fb7e6455adc2949409a51d23d31e0f1678191a38ebf8552621de71cc5f"
},
"downloads": -1,
"filename": "virtualenvwrapper_win-1.2.3-py2-none-any.whl",
"has_sig": false,
"md5_digest": "11c2911691202f11e02c3a2e36b603f7",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 17308,
"upload_time": "2017-10-29T02:00:40",
"url": "https://files.pythonhosted.org/packages/51/21/34b325e12fe4e3b2e8fc6e98e3c81351ca94f4e3afa40b894380adbe4e9d/virtualenvwrapper_win-1.2.3-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "c58f441f01ceebd754c95705ad9577fb",
"sha256": "74f5129b922c72fe593ef46db38eca3ce1c23d81a0030d6eee7911a3979b53b4"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.2.3.tar.gz",
"has_sig": false,
"md5_digest": "c58f441f01ceebd754c95705ad9577fb",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 18538,
"upload_time": "2017-10-29T02:00:41",
"url": "https://files.pythonhosted.org/packages/ea/70/a939796269d9eba5983ec3d18e1f456861eb87ef653f28b1b8e6c5921559/virtualenvwrapper-win-1.2.3.tar.gz"
}
],
"1.2.4": [
{
"comment_text": "",
"digests": {
"md5": "762b127a28d78e737465b390f1cb5711",
"sha256": "c4c978ebd77585ab11668f807d6f64f0479004213886676353fa13f316e7cfbb"
},
"downloads": -1,
"filename": "virtualenvwrapper_win-1.2.4-py2-none-any.whl",
"has_sig": false,
"md5_digest": "762b127a28d78e737465b390f1cb5711",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 21257,
"upload_time": "2017-11-18T00:39:44",
"url": "https://files.pythonhosted.org/packages/99/32/bb06263fb66bc5833fd53dfbbb3ba0a2f303f21d2b1eee5ab9bdbc100656/virtualenvwrapper_win-1.2.4-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "7cd2407d9669d426fa36320f09032956",
"sha256": "49005688cef9ff74615fe98437f3faea87279056669751145fc589f825a82cb5"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.2.4.tar.gz",
"has_sig": false,
"md5_digest": "7cd2407d9669d426fa36320f09032956",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 21320,
"upload_time": "2017-11-18T00:39:46",
"url": "https://files.pythonhosted.org/packages/a1/0d/ce1ce5a026365b6f8ae265c97a43ccb1245a082135c2a38d07af5df781d2/virtualenvwrapper-win-1.2.4.tar.gz"
}
],
"1.2.5": [
{
"comment_text": "",
"digests": {
"md5": "f0bdc9a5a39ea20c45905d26b12623ee",
"sha256": "fab83daa2dbbc00ff2244d55d1def27733b44235d421a6bf4ae7e5215640987d"
},
"downloads": -1,
"filename": "virtualenvwrapper_win-1.2.5-py2-none-any.whl",
"has_sig": false,
"md5_digest": "f0bdc9a5a39ea20c45905d26b12623ee",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 22038,
"upload_time": "2017-12-07T19:26:53",
"url": "https://files.pythonhosted.org/packages/87/70/ccebe989b112c42814fee4c145cfdac8fbcb174074b04bf8250b3052544f/virtualenvwrapper_win-1.2.5-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ed32cd6c7bbf4d5e994242be3e77894f",
"sha256": "c54bec2874da571bacceabc1ebf5d474fe1c37786cb1ef23cdac9f3de9bfd6d8"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.2.5.tar.gz",
"has_sig": false,
"md5_digest": "ed32cd6c7bbf4d5e994242be3e77894f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 21622,
"upload_time": "2017-12-07T19:26:56",
"url": "https://files.pythonhosted.org/packages/f5/23/4cba98733b9122219ce67177d745e4984b524b867cf3728eaa807ea21919/virtualenvwrapper-win-1.2.5.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "f0bdc9a5a39ea20c45905d26b12623ee",
"sha256": "fab83daa2dbbc00ff2244d55d1def27733b44235d421a6bf4ae7e5215640987d"
},
"downloads": -1,
"filename": "virtualenvwrapper_win-1.2.5-py2-none-any.whl",
"has_sig": false,
"md5_digest": "f0bdc9a5a39ea20c45905d26b12623ee",
"packagetype": "bdist_wheel",
"python_version": "py2",
"requires_python": null,
"size": 22038,
"upload_time": "2017-12-07T19:26:53",
"url": "https://files.pythonhosted.org/packages/87/70/ccebe989b112c42814fee4c145cfdac8fbcb174074b04bf8250b3052544f/virtualenvwrapper_win-1.2.5-py2-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "ed32cd6c7bbf4d5e994242be3e77894f",
"sha256": "c54bec2874da571bacceabc1ebf5d474fe1c37786cb1ef23cdac9f3de9bfd6d8"
},
"downloads": -1,
"filename": "virtualenvwrapper-win-1.2.5.tar.gz",
"has_sig": false,
"md5_digest": "ed32cd6c7bbf4d5e994242be3e77894f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 21622,
"upload_time": "2017-12-07T19:26:56",
"url": "https://files.pythonhosted.org/packages/f5/23/4cba98733b9122219ce67177d745e4984b524b867cf3728eaa807ea21919/virtualenvwrapper-win-1.2.5.tar.gz"
}
]
}