[metadata] name = virtualenv version = attr: virtualenv.__version__ description = Virtual Python Environment builder long_description = file: README.md long_description_content_type = text/markdown url = https://virtualenv.pypa.io/ author = Bernat Gabor license = MIT license_file = LICENSE platforms = any classifiers = Development Status :: 5 - Production/Stable Intended Audience :: Developers License :: OSI Approved :: MIT License Operating System :: MacOS :: MacOS X Operating System :: Microsoft :: Windows Operating System :: POSIX 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 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: Implementation :: CPython Programming Language :: Python :: Implementation :: PyPy Topic :: Software Development :: Libraries Topic :: Software Development :: Testing Topic :: Utilities author-email = gaborjbernat@gmail.com keywords = virtual, environments, isolated maintainer = Bernat Gabor maintainer-email = gaborjbernat@gmail.com project_urls = Source=https://github.com/pypa/virtualenv Tracker=https://github.com/pypa/virtualenv/issues [options] packages = find: install_requires = appdirs>=1.4.3,<2 filelock>=3.0.0,<4 six>=1.12.0,<2 contextlib2>=0.6.0,<1;python_version<"3.3" distlib>=0.3.0,<1;sys.platform == 'win32' importlib-metadata>=0.12,<2;python_version<"3.8" importlib-resources>=1.0,<2;python_version<"3.7" pathlib2>=2.3.3,<3;python_version < '3.4' and sys.platform != 'win32' python_requires = >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.* package_dir = =src zip_safe = True [options.entry_points] console_scripts = virtualenv=virtualenv.__main__:run_with_catch virtualenv.activate = bash = virtualenv.activation.bash:BashActivator cshell = virtualenv.activation.cshell:CShellActivator batch = virtualenv.activation.batch:BatchActivator fish = virtualenv.activation.fish:FishActivator powershell = virtualenv.activation.powershell:PowerShellActivator python = virtualenv.activation.python:PythonActivator xonsh = virtualenv.activation.xonsh:XonshActivator virtualenv.create = venv = virtualenv.create.via_global_ref.venv:Venv cpython3-posix = virtualenv.create.via_global_ref.builtin.cpython.cpython3:CPython3Posix cpython3-win = virtualenv.create.via_global_ref.builtin.cpython.cpython3:CPython3Windows cpython2-posix = virtualenv.create.via_global_ref.builtin.cpython.cpython2:CPython2Posix cpython2-win = virtualenv.create.via_global_ref.builtin.cpython.cpython2:CPython2Windows pypy2-posix = virtualenv.create.via_global_ref.builtin.pypy.pypy2:PyPy2Posix pypy2-win = virtualenv.create.via_global_ref.builtin.pypy.pypy2:Pypy2Windows pypy3-posix = virtualenv.create.via_global_ref.builtin.pypy.pypy3:PyPy3Posix pypy3-win = virtualenv.create.via_global_ref.builtin.pypy.pypy3:Pypy3Windows virtualenv.discovery = builtin = virtualenv.discovery.builtin:Builtin virtualenv.seed = pip = virtualenv.seed.embed.pip_invoke:PipInvoke app-data = virtualenv.seed.via_app_data.via_app_data:FromAppData [options.extras_require] docs = sphinx >= 2.0.0, < 3 sphinx-argparse >= 0.2.5, <1 sphinx-rtd-theme >= 0.4.3, <1 towncrier >= 19.9.0rc1 testing = packaging>=20.0;python_version>"3.4" pytest >= 4.0.0, <6 coverage >= 4.5.1, <6 pytest-mock >= 2.0.0, <3 pytest-env >= 0.6.2, <1 xonsh >= 0.9.13, <1; python_version > '3.4' [options.package_data] virtualenv.activation.bash = *.sh virtualenv.activation.batch = *.bat virtualenv.activation.cshell = *.csh virtualenv.activation.fish = *.fish virtualenv.activation.powershell = *.ps1 virtualenv.activation.xonsh = *.xsh virtualenv.seed.embed.wheels = *.whl [options.packages.find] where = src [sdist] formats = gztar [bdist_wheel] universal = true [tool:pytest] timeout = 200 markers = slow junit_family = xunit2 addopts = --tb=auto -ra --showlocals env = PYTHONWARNINGS=ignore:DEPRECATION::pip._internal.cli.base_command PYTHONIOENCODING=utf-8