117 lines
4.1 KiB
INI
117 lines
4.1 KiB
INI
[metadata]
|
|
name = virtualenv
|
|
description = Virtual Python Environment builder
|
|
long_description = file: README.md
|
|
long_description_content_type = text/markdown
|
|
url = https://virtualenv.pypa.io/
|
|
author = Bernat Gabor
|
|
author_email = gaborjbernat@gmail.com
|
|
maintainer = Bernat Gabor
|
|
maintainer_email = gaborjbernat@gmail.com
|
|
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 :: 3
|
|
Programming Language :: Python :: 3 :: Only
|
|
Programming Language :: Python :: Implementation :: CPython
|
|
Programming Language :: Python :: Implementation :: PyPy
|
|
Topic :: Software Development :: Libraries
|
|
Topic :: Software Development :: Testing
|
|
Topic :: Utilities
|
|
keywords = virtual, environments, isolated
|
|
project_urls =
|
|
Source=https://github.com/pypa/virtualenv
|
|
Tracker=https://github.com/pypa/virtualenv/issues
|
|
|
|
[options]
|
|
packages = find:
|
|
install_requires =
|
|
distlib>=0.3.5,<1
|
|
filelock>=3.4.1,<4
|
|
platformdirs>=2.4,<3
|
|
importlib-metadata>=4.8.3;python_version < "3.8"
|
|
importlib-resources>=5.4;python_version < "3.7"
|
|
python_requires = >=3.6
|
|
package_dir =
|
|
=src
|
|
zip_safe = True
|
|
|
|
[options.packages.find]
|
|
where = src
|
|
|
|
[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
|
|
nushell = virtualenv.activation.nushell:NushellActivator
|
|
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-mac-framework = virtualenv.create.via_global_ref.builtin.cpython.mac_os:CPython2macOsFramework
|
|
cpython2-mac-arm-framework = virtualenv.create.via_global_ref.builtin.cpython.mac_os:CPython2macOsArmFramework
|
|
cpython3-mac-framework = virtualenv.create.via_global_ref.builtin.cpython.mac_os:CPython3macOsFramework
|
|
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.embed.via_app_data.via_app_data:FromAppData
|
|
|
|
[options.extras_require]
|
|
docs =
|
|
proselint>=0.13
|
|
sphinx>=5.1.1
|
|
sphinx-argparse>=0.3.1
|
|
sphinx-rtd-theme>=1
|
|
towncrier>=21.9
|
|
testing =
|
|
coverage>=6.2
|
|
coverage-enable-subprocess>=1
|
|
flaky>=3.7
|
|
packaging>=21.3
|
|
pytest>=7.0.1
|
|
pytest-env>=0.6.2
|
|
pytest-freezegun>=0.4.2
|
|
pytest-mock>=3.6.1
|
|
pytest-randomly>=3.10.3
|
|
pytest-timeout>=2.1
|
|
|
|
[options.package_data]
|
|
virtualenv.activation.bash = *.sh
|
|
virtualenv.activation.batch = *.bat
|
|
virtualenv.activation.cshell = *.csh
|
|
virtualenv.activation.fish = *.fish
|
|
virtualenv.activation.nushell = *.nu
|
|
virtualenv.activation.powershell = *.ps1
|
|
virtualenv.seed.wheels.embed = *.whl
|
|
|
|
[sdist]
|
|
formats = gztar
|
|
|
|
[tool:pytest]
|
|
markers =
|
|
slow
|
|
junit_family = xunit2
|
|
addopts = --tb=auto -ra --showlocals --no-success-flaky-report
|
|
env =
|
|
PYTHONWARNINGS=ignore:DEPRECATION::pip._internal.cli.base_command
|
|
PYTHONIOENCODING=utf-8
|