[metadata] name = tox description = tox is a generic virtualenv management and test command line tool long_description = file: README.md long_description_content_type = text/markdown url = http://tox.readthedocs.org author = Bernát Gábor author_email = gaborjbernat@gmail.com maintainer = Bernát Gábor, Oliver Bestwalter, Anthony Sottile, Jürgen Gmach maintainer_email = tox-dev@python.org license = MIT license_file = LICENSE platforms = any classifiers = Development Status :: 5 - Production/Stable Framework :: tox 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 :: 3.6 Programming Language :: Python :: 3.7 Programming Language :: Python :: 3.8 Programming Language :: Python :: 3.9 Programming Language :: Python :: 3.10 Topic :: Software Development :: Libraries Topic :: Software Development :: Testing Topic :: Utilities keywords = virtual, environments, isolated, testing project_urls = Source=https://github.com/tox-dev/tox Tracker=https://github.com/tox-dev/tox/issues [options] packages = find: install_requires = cachetools>=4.2 chardet>=4 colorama>=0.4.4 packaging>=21 platformdirs>=2.1 pluggy>=0.13.1 tomli>=1.1 virtualenv>=20.6 importlib-metadata>=4.6.1;python_version<"3.8" typing-extensions>=3.10;python_version<"3.8" python_requires = >=3.6 package_dir = =src [options.packages.find] where = src [options.entry_points] console_scripts = tox4 = tox.run:run [options.extras_require] docs = furo>=2021.8.17b43 sphinx>=4.1 sphinx-argparse-cli>=1.7 sphinx-autodoc-typehints>=1.12 sphinx-copybutton>=0.4 sphinx-inline-tabs>=2021.4.11b9 sphinxcontrib-towncrier>=0.2.0a0 towncrier>=21.3 testing = covdefaults>=1.2 devpi-client>=5.2 devpi-server>=6.1 distlib>=0.3.2 filelock>=3 flaky>=3.7 freezegun>=1.1 psutil>=5.8 pytest>=6.2 pytest-cov>=2.12 pytest-mock>=3.6 pytest-xdist>=2.3 re-assert>=1.1 setuptools>=57 setuptools_scm[toml]>=6 wheel>=0.36 [options.package_data] tox = py.typed [tool:pytest] testpaths = tests junit_family = xunit2 addopts = --tb=auto -ra --showlocals --no-success-flaky-report [coverage:run] parallel = True plugins = covdefaults [coverage:report] fail_under = 95 omit = src/tox/config/cli/for_docs.py tests/execute/local_subprocess/bad_process.py [coverage:paths] source = src .tox*/*/lib/python*/site-packages .tox*/pypy*/site-packages .tox*\*\Lib\site-packages\ */src *\src [coverage:html] show_contexts = true skip_covered = false [coverage:covdefaults] subtract_omit = */.tox/* [mypy] python_version = 3.6 disallow_any_generics = True disallow_subclassing_any = True disallow_untyped_calls = True disallow_untyped_defs = True disallow_incomplete_defs = True disallow_untyped_decorators = True show_error_codes = True no_implicit_optional = True warn_redundant_casts = True warn_unused_ignores = False warn_no_return = True warn_return_any = True implicit_reexport = False strict_equality = True warn_unused_configs = True pretty = True [mypy-colorama.*] ignore_missing_imports = True [mypy-coverage.*] ignore_missing_imports = True [mypy-distlib.*] ignore_missing_imports = True [mypy-flaky.*] ignore_missing_imports = True [mypy-importlib_metadata.*] ignore_missing_imports = True [mypy-pluggy.*] ignore_missing_imports = True [mypy-psutil.*] ignore_missing_imports = True [mypy-re_assert.*] ignore_missing_imports = True [mypy-setuptools.*] ignore_missing_imports = True [mypy-virtualenv.*] ignore_missing_imports = True [mypy-wheel.*] ignore_missing_imports = True