Metadata-Version: 2.4
Name: tox-legacy-dependency-groups
Version: 0.0.1
Author-email: Nathan Williams <nathan.williams@codethink.co.uk>
Project-URL: Documentation, https://gitlab.com/nathan.williams1/tox-legacy-dependency-groups/
Project-URL: Homepage, https://gitlab.com/nathan.williams1/tox-legacy-dependency-groups/
Project-URL: Repository, https://gitlab.com/nathan.williams1/tox-legacy-dependency-groups/
Classifier: Framework :: tox
Requires-Python: >=3.10
Description-Content-Type: text/x-rst
Requires-Dist: tomli
Requires-Dist: tox<=3.28

tox-legacy-dependency-groups
============================

Adds support for dependency_groups to legacy versions of tox, that can read dependency-groups from pyproject.toml files.

For example pyproject.toml::

    [dependency-groups]
    test = [
        "pyftpdlib>=2.2.0",
        "pytest >= 6.0.1",
        "pytest-datafiles >= 2.0, < 3.0",
        "pytest-env>=1.1.5",
        "pytest-xdist>=3.8.0",
    ]
    all = [
        { include-group = "test" },
    ]

For example tox.ini::

  [tox]
    envlist =
      py310,

  [testenv]
    dependency_groups =
      test


Installation::
  
   pip install -e tox-legacy-dependency-groups
