You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

96 lines
3.6 KiB

4 years ago
  1. Metadata-Version: 2.1
  2. Name: virtualenv
  3. Version: 16.1.0
  4. Summary: Virtual Python Environment builder
  5. Home-page: https://virtualenv.pypa.io/
  6. Author: Ian Bicking
  7. Author-email: ianb@colorstudy.com
  8. Maintainer: Jannis Leidel, Carl Meyer and Brian Rosner
  9. Maintainer-email: python-virtualenv@groups.google.com
  10. License: MIT
  11. Keywords: setuptools deployment installation distutils
  12. Platform: UNKNOWN
  13. Classifier: Development Status :: 5 - Production/Stable
  14. Classifier: Intended Audience :: Developers
  15. Classifier: License :: OSI Approved :: MIT License
  16. Classifier: Programming Language :: Python :: 2
  17. Classifier: Programming Language :: Python :: 2.7
  18. Classifier: Programming Language :: Python :: 3
  19. Classifier: Programming Language :: Python :: 3.4
  20. Classifier: Programming Language :: Python :: 3.5
  21. Classifier: Programming Language :: Python :: 3.6
  22. Classifier: Programming Language :: Python :: 3.7
  23. Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*
  24. Provides-Extra: docs
  25. Requires-Dist: sphinx (<2,>=1.8.0); extra == 'docs'
  26. Provides-Extra: testing
  27. Requires-Dist: pytest (<4,>=3.0.0); extra == 'testing'
  28. Requires-Dist: coverage (<5,>=4.5.0); extra == 'testing'
  29. Requires-Dist: pytest-timeout (<2,>=1.3.0); (platform_python_implementation != "Jython") and extra == 'testing'
  30. Requires-Dist: mock; (python_version < "3.3") and extra == 'testing'
  31. Virtualenv
  32. ==========
  33. `Mailing list <http://groups.google.com/group/python-virtualenv>`_ |
  34. `Issues <https://github.com/pypa/virtualenv/issues>`_ |
  35. `Github <https://github.com/pypa/virtualenv>`_ |
  36. `PyPI <https://pypi.org/project/virtualenv/>`_ |
  37. User IRC: #pypa
  38. Dev IRC: #pypa-dev
  39. Introduction
  40. ------------
  41. ``virtualenv`` is a tool to create isolated Python environments.
  42. The basic problem being addressed is one of dependencies and versions,
  43. and indirectly permissions. Imagine you have an application that
  44. needs version 1 of LibFoo, but another application requires version
  45. 2. How can you use both these applications? If you install
  46. everything into ``/usr/lib/python2.7/site-packages`` (or whatever your
  47. platform's standard location is), it's easy to end up in a situation
  48. where you unintentionally upgrade an application that shouldn't be
  49. upgraded.
  50. Or more generally, what if you want to install an application *and
  51. leave it be*? If an application works, any change in its libraries or
  52. the versions of those libraries can break the application.
  53. Also, what if you can't install packages into the global
  54. ``site-packages`` directory? For instance, on a shared host.
  55. In all these cases, ``virtualenv`` can help you. It creates an
  56. environment that has its own installation directories, that doesn't
  57. share libraries with other virtualenv environments (and optionally
  58. doesn't access the globally installed libraries either).
  59. .. comment:
  60. Release History
  61. ===============
  62. 16.1.0 (2018-10-31)
  63. -------------------
  64. * Fixed documentation to use pypi.org and correct curl options; #1042
  65. * bug fix: ensure prefix is absolute when creating a new virtual environment #1208
  66. * upgrade setuptools from ``39.1.0`` to ``40.5.0``
  67. * upgrade wheel from ``0.31.1`` to ``0.32.2``
  68. * upgrade pip from ``10.0.1`` to ``18.1``
  69. * ``activate.csh`` does not use basename and handles newlines #1200
  70. * fix failure to copy on platforms that use lib64 #1189
  71. * enable tab-completion in the interactive interpreter by default, thanks to a new ``sys.__interactivehook__`` on Python 3 #967
  72. * suppress warning of usage of the deprecated ``imp`` module #1238
  73. 16.0.0 (2018-05-16)
  74. -------------------
  75. * Drop support for Python 2.6.
  76. * Upgrade pip to 10.0.1.
  77. * Upgrade setuptools to 39.1.0.
  78. * Upgrade wheel to 0.31.1.
  79. `Full Changelog <https://virtualenv.pypa.io/en/latest/changes.html>`_.