2020-09-23 02:17:30 -04:00
|
|
|
[tool.poetry]
|
|
|
|
name = "tox-poetry-installer"
|
2021-09-13 11:31:00 -04:00
|
|
|
version = "0.8.2"
|
2020-09-23 02:17:30 -04:00
|
|
|
license = "MIT"
|
2020-09-23 21:59:01 -04:00
|
|
|
authors = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"]
|
2021-04-19 23:39:32 -04:00
|
|
|
description = "A plugin for Tox that lets you install test environment dependencies from the Poetry lockfile"
|
2020-09-23 18:40:31 -04:00
|
|
|
repository = "https://github.com/enpaul/tox-poetry-installer/"
|
2020-10-11 18:25:48 -04:00
|
|
|
packages = [
|
2020-11-11 21:26:59 -05:00
|
|
|
{include = "tox_poetry_installer"},
|
2020-10-11 18:25:48 -04:00
|
|
|
{include = "tests/*.py", format = "sdist"}
|
|
|
|
]
|
2020-11-11 21:27:38 -05:00
|
|
|
include = [
|
|
|
|
"tox_poetry_installer/py.typed"
|
|
|
|
]
|
2020-09-23 18:40:31 -04:00
|
|
|
keywords = ["tox", "poetry", "plugin"]
|
|
|
|
readme = "README.md"
|
|
|
|
classifiers = [
|
2020-12-05 18:09:01 -05:00
|
|
|
"Development Status :: 4 - Beta",
|
2020-09-23 18:40:31 -04:00
|
|
|
"Environment :: Plugins",
|
|
|
|
"Framework :: tox",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Operating System :: OS Independent",
|
2021-02-15 21:35:45 -05:00
|
|
|
"Programming Language :: Python :: 3",
|
2020-09-23 18:40:31 -04:00
|
|
|
"Programming Language :: Python :: 3.6",
|
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
2020-11-26 12:54:14 -05:00
|
|
|
"Programming Language :: Python :: 3.9",
|
2022-01-05 01:00:49 -05:00
|
|
|
"Programming Language :: Python :: 3.10",
|
2020-09-23 18:40:31 -04:00
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
|
|
]
|
2020-09-23 02:17:30 -04:00
|
|
|
|
|
|
|
[tool.poetry.plugins.tox]
|
|
|
|
poetry_installer = "tox_poetry_installer"
|
|
|
|
|
2020-12-04 17:50:29 -05:00
|
|
|
[tool.poetry.extras]
|
|
|
|
poetry = ["poetry"]
|
|
|
|
|
2020-09-23 02:17:30 -04:00
|
|
|
[tool.poetry.dependencies]
|
2020-11-26 12:48:40 -05:00
|
|
|
python = "^3.6.1"
|
2020-12-04 17:50:29 -05:00
|
|
|
poetry = {version = "^1.0.0", optional = true}
|
2020-10-17 12:49:04 -04:00
|
|
|
poetry-core = "^1.0.0"
|
2020-12-17 01:05:16 -05:00
|
|
|
tox = "^3.8.0"
|
2020-09-23 02:17:30 -04:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
2020-09-23 18:40:31 -04:00
|
|
|
bandit = "^1.6.2"
|
2022-01-05 00:45:02 -05:00
|
|
|
black = {version = "^21.12b0", allow-prereleases = true, python = "^3.7"}
|
2020-11-26 12:48:40 -05:00
|
|
|
blacken-docs = "^1.8.0"
|
2020-11-26 12:41:06 -05:00
|
|
|
ipython = { version = "^7.18.1", python = "^3.7" }
|
2022-01-05 00:45:02 -05:00
|
|
|
mdformat = {version = "^0.6", python = "^3.8"}
|
|
|
|
mdformat-gfm = {version = "^0.2", python = "^3.8"}
|
|
|
|
mypy = "^0.930"
|
2020-11-26 12:48:40 -05:00
|
|
|
pre-commit = "^2.7.1"
|
|
|
|
pre-commit-hooks = "^3.3.0"
|
2020-09-23 18:40:31 -04:00
|
|
|
pylint = "^2.4.4"
|
2020-09-24 21:01:20 -04:00
|
|
|
pytest = "^6.0.2"
|
|
|
|
pytest-cov = "^2.10.1"
|
2020-11-26 12:48:40 -05:00
|
|
|
reorder-python-imports = "^2.3.5"
|
2020-09-23 18:40:31 -04:00
|
|
|
safety = "^1.9.0"
|
2020-09-24 21:01:20 -04:00
|
|
|
toml = "^0.10.1"
|
2020-09-23 18:40:31 -04:00
|
|
|
tox = "^3.20.0"
|
2020-09-23 02:17:30 -04:00
|
|
|
|
|
|
|
[build-system]
|
2020-11-12 00:41:54 -05:00
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|