METADATA 4.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. Metadata-Version: 2.4
  2. Name: virtualenv
  3. Version: 20.36.1
  4. Summary: Virtual Python Environment builder
  5. Project-URL: Documentation, https://virtualenv.pypa.io
  6. Project-URL: Homepage, https://github.com/pypa/virtualenv
  7. Project-URL: Source, https://github.com/pypa/virtualenv
  8. Project-URL: Tracker, https://github.com/pypa/virtualenv/issues
  9. Maintainer-email: Bernat Gabor <gaborjbernat@gmail.com>
  10. License-Expression: MIT
  11. License-File: LICENSE
  12. Keywords: environments,isolated,virtual
  13. Classifier: Development Status :: 5 - Production/Stable
  14. Classifier: Intended Audience :: Developers
  15. Classifier: License :: OSI Approved :: MIT License
  16. Classifier: Operating System :: MacOS :: MacOS X
  17. Classifier: Operating System :: Microsoft :: Windows
  18. Classifier: Operating System :: POSIX
  19. Classifier: Programming Language :: Python :: 3 :: Only
  20. Classifier: Programming Language :: Python :: 3.8
  21. Classifier: Programming Language :: Python :: 3.9
  22. Classifier: Programming Language :: Python :: 3.10
  23. Classifier: Programming Language :: Python :: 3.11
  24. Classifier: Programming Language :: Python :: 3.12
  25. Classifier: Programming Language :: Python :: 3.13
  26. Classifier: Programming Language :: Python :: 3.14
  27. Classifier: Programming Language :: Python :: Implementation :: CPython
  28. Classifier: Programming Language :: Python :: Implementation :: PyPy
  29. Classifier: Topic :: Software Development :: Libraries
  30. Classifier: Topic :: Software Development :: Testing
  31. Classifier: Topic :: Utilities
  32. Requires-Python: >=3.8
  33. Requires-Dist: distlib<1,>=0.3.7
  34. Requires-Dist: filelock<4,>=3.16.1; python_version < '3.10'
  35. Requires-Dist: filelock<4,>=3.20.1; python_version >= '3.10'
  36. Requires-Dist: importlib-metadata>=6.6; python_version < '3.8'
  37. Requires-Dist: platformdirs<5,>=3.9.1
  38. Requires-Dist: typing-extensions>=4.13.2; python_version < '3.11'
  39. Provides-Extra: docs
  40. Requires-Dist: furo>=2023.7.26; extra == 'docs'
  41. Requires-Dist: proselint>=0.13; extra == 'docs'
  42. Requires-Dist: sphinx!=7.3,>=7.1.2; extra == 'docs'
  43. Requires-Dist: sphinx-argparse>=0.4; extra == 'docs'
  44. Requires-Dist: sphinxcontrib-towncrier>=0.2.1a0; extra == 'docs'
  45. Requires-Dist: towncrier>=23.6; extra == 'docs'
  46. Provides-Extra: test
  47. Requires-Dist: covdefaults>=2.3; extra == 'test'
  48. Requires-Dist: coverage-enable-subprocess>=1; extra == 'test'
  49. Requires-Dist: coverage>=7.2.7; extra == 'test'
  50. Requires-Dist: flaky>=3.7; extra == 'test'
  51. Requires-Dist: packaging>=23.1; extra == 'test'
  52. Requires-Dist: pytest-env>=0.8.2; extra == 'test'
  53. Requires-Dist: pytest-freezer>=0.4.8; (platform_python_implementation == 'PyPy' or platform_python_implementation == 'GraalVM' or (platform_python_implementation == 'CPython' and sys_platform == 'win32' and python_version >= '3.13')) and extra == 'test'
  54. Requires-Dist: pytest-mock>=3.11.1; extra == 'test'
  55. Requires-Dist: pytest-randomly>=3.12; extra == 'test'
  56. Requires-Dist: pytest-timeout>=2.1; extra == 'test'
  57. Requires-Dist: pytest>=7.4; extra == 'test'
  58. Requires-Dist: setuptools>=68; extra == 'test'
  59. Requires-Dist: time-machine>=2.10; (platform_python_implementation == 'CPython') and extra == 'test'
  60. Description-Content-Type: text/markdown
  61. # virtualenv
  62. [![PyPI](https://img.shields.io/pypi/v/virtualenv?style=flat-square)](https://pypi.org/project/virtualenv)
  63. [![PyPI - Implementation](https://img.shields.io/pypi/implementation/virtualenv?style=flat-square)](https://pypi.org/project/virtualenv)
  64. [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/virtualenv?style=flat-square)](https://pypi.org/project/virtualenv)
  65. [![Documentation](https://readthedocs.org/projects/virtualenv/badge/?version=latest&style=flat-square)](http://virtualenv.pypa.io)
  66. [![Discord](https://img.shields.io/discord/803025117553754132)](https://discord.gg/pypa)
  67. [![Downloads](https://static.pepy.tech/badge/virtualenv/month)](https://pepy.tech/project/virtualenv)
  68. [![PyPI - License](https://img.shields.io/pypi/l/virtualenv?style=flat-square)](https://opensource.org/licenses/MIT)
  69. [![check](https://github.com/pypa/virtualenv/actions/workflows/check.yaml/badge.svg)](https://github.com/pypa/virtualenv/actions/workflows/check.yaml)
  70. A tool for creating isolated `virtual` python environments.
  71. - [Installation](https://virtualenv.pypa.io/en/latest/installation.html)
  72. - [Documentation](https://virtualenv.pypa.io)
  73. - [Changelog](https://virtualenv.pypa.io/en/latest/changelog.html)
  74. - [Issues](https://github.com/pypa/virtualenv/issues)
  75. - [PyPI](https://pypi.org/project/virtualenv)
  76. - [Github](https://github.com/pypa/virtualenv)
  77. ## Code of Conduct
  78. Everyone interacting in the virtualenv project's codebases, issue trackers, chat rooms, and mailing lists is expected to
  79. follow the [PSF Code of Conduct](https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md).