[tool.poetry] name = "tox-poetry-installer" version = "1.0.0b1" license = "MIT" authors = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"] description = "A plugin for Tox that lets you install test environment dependencies from the Poetry lockfile" repository = "https://github.com/enpaul/tox-poetry-installer/" packages = [ {include = "tox_poetry_installer"}, {include = "tests/*.py", format = "sdist"} ] include = [ "tox_poetry_installer/py.typed" ] keywords = ["tox", "poetry", "plugin"] readme = "README.md" classifiers = [ "Development Status :: 4 - Beta", "Environment :: Plugins", "Framework :: tox", "Intended Audience :: Developers", "License :: OSI Approved :: MIT License", "Natural Language :: English", "Operating System :: OS Independent", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: Implementation :: CPython", ] [tool.poetry.plugins.tox] poetry_installer = "tox_poetry_installer" [tool.poetry.dependencies] python = "^3.8" cleo = ">=1.0,<3.0" poetry = "^1.5.0" poetry-core = "^1.1.0" tox = "^4.1" [tool.poetry.group.dev.dependencies] bandit = {version = "^1.7.7", python = "^3.10"} black = {version = "^24.3.0", python = "^3.10"} blacken-docs = {version = "^1.8.0", python = "^3.10"} ipython = {version = "^8.10.1", python = "^3.10"} isort = {version = "^5.13.2", python = "^3.10"} mdformat = {version = "^0.7", python = "^3.10"} mdformat-gfm = {version = "^0.3", python = "^3.10"} mypy = {version = "^0.930", python = "^3.10"} pre-commit = {version = "^2.7.1", python = "^3.10"} pre-commit-hooks = {version = "^3.3.0", python = "^3.10"} pylint = {version = "^2.13.0", python = "^3.10"} pytest = {version = "^6.0.2", python = "^3.10"} pytest-cov = {version = "^2.10.1", python = "^3.10"} toml = {version = "^0.10.1", python = "^3.10"} tox = "^4.1" types-toml = {version = "^0.10.1", python = "^3.10"} [tool.isort] profile = "black" force_single_line = "true" lines_after_imports = 2 [build-system] requires = ["poetry-core>=1.1.0"] build-backend = "poetry.core.masonry.api"