mirror of
https://github.com/enpaul/tox-poetry-installer.git
synced 2024-10-29 19:47:00 +00:00
26 lines
611 B
TOML
26 lines
611 B
TOML
[tool.poetry]
|
|
name = "tox-poetry-installer"
|
|
version = "0.1.0"
|
|
description = "Tox plugin to install Tox environment dependencies using the Poetry backend and lockfile"
|
|
authors = ["Ethan Paul <e@enp.one>"]
|
|
license = "MIT"
|
|
|
|
[tool.poetry.plugins.tox]
|
|
poetry_installer = "tox_poetry_installer"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.6"
|
|
poetry = "^1.0.10"
|
|
pluggy = "^0.13.1"
|
|
poetry-semver = "^0.1.0"
|
|
requests = "2.22.0"
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
ipython = {version = "^7.18.1", python = "^3.7"}
|
|
tox = "^3.20.0"
|
|
mypy = "^0.782"
|
|
|
|
[build-system]
|
|
requires = ["poetry>=1.0.0"]
|
|
build-backend = "poetry.masonry.api"
|