Metadata-Version: 2.1
Name: tox
Version: 3.6.1
Summary: virtualenv-based automation of test activities
Home-page: https://tox.readthedocs.org/
Author: holger krekel
Author-email: holger@merlinux.eu
License: https://opensource.org/licenses/MIT
Platform: unix
Platform: linux
Platform: osx
Platform: cygwin
Platform: win32
Classifier: Development Status :: 5 - Production/Stable
Classifier: Framework :: tox
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Topic :: Software Development :: Testing
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Utilities
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*
Requires-Dist: setuptools (>=30.0.0)
Requires-Dist: pluggy (<1,>=0.3.0)
Requires-Dist: py (<2,>=1.4.17)
Requires-Dist: six (<2,>=1.0.0)
Requires-Dist: virtualenv (>=1.11.2)
Requires-Dist: toml (>=0.9.4)
Requires-Dist: filelock (<4,>=3.0.0)
Provides-Extra: docs
Requires-Dist: sphinx (<2,>=1.8.0) ; extra == 'docs'
Requires-Dist: towncrier (>=18.5.0) ; extra == 'docs'
Requires-Dist: pygments-github-lexers (>=0.0.5) ; extra == 'docs'
Requires-Dist: sphinxcontrib-autoprogram (>=0.1.5) ; extra == 'docs'
Provides-Extra: testing
Requires-Dist: pytest (<4,>=3.0.0) ; extra == 'testing'
Requires-Dist: pytest-cov (<3,>=2.5.1) ; extra == 'testing'
Requires-Dist: pytest-mock (<2,>=1.10.0) ; extra == 'testing'
Requires-Dist: pytest-timeout (<2,>=1.3.0) ; extra == 'testing'
Requires-Dist: pytest-xdist (<2,>=1.22.2) ; extra == 'testing'
Requires-Dist: pytest-randomly (<2,>=1.2.3) ; extra == 'testing'

.. image:: https://badge.fury.io/py/tox.svg
  :target: https://badge.fury.io/py/tox
  :alt: Latest version on PyPI
.. image:: https://img.shields.io/pypi/pyversions/tox.svg
  :target: https://pypi.org/project/tox/
  :alt: Supported Python versions
.. image:: https://dev.azure.com/toxdev/tox/_apis/build/status/tox%20ci?branchName=master
  :target: https://dev.azure.com/toxdev/tox/_build/latest?definitionId=9&branchName=master
  :alt: Azure Pipelines build status
.. image:: https://api.codeclimate.com/v1/badges/425c19ab2169a35e1c16/test_coverage
   :target: https://codeclimate.com/github/tox-dev/tox/code?sort=test_coverage
   :alt: Test Coverage
.. image:: https://readthedocs.org/projects/tox/badge/?version=latest&style=flat-square
  :target: https://tox.readthedocs.io/en/latest/?badge=latest
  :alt: Documentation status
.. image:: https://img.shields.io/badge/code%20style-black-000000.svg
  :target: https://github.com/ambv/black
  :alt: Code style: black

tox automation project
======================

**vision: standardize testing in Python**

tox aims to automate and standardize testing in Python. It is part of a larger vision of easing the packaging, testing and release process of Python software.

What is tox?
============

tox is a generic virtualenv management and test command line tool you can use for:

* checking your package installs correctly with different Python versions and
  interpreters

* running your tests in each of the environments, configuring your test tool of choice

* acting as a frontend to Continuous Integration servers, greatly
  reducing boilerplate and merging CI and shell-based testing.

For more information and the repository please see:

- home and docs: https://tox.readthedocs.org

- repository: https://github.com/tox-dev/tox


