2020-09-23 06:17:30 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "tox-poetry-installer"
|
2023-05-19 17:56:45 +00:00
|
|
|
version = "0.10.3"
|
2020-09-23 06:17:30 +00:00
|
|
|
license = "MIT"
|
2020-09-24 01:59:01 +00:00
|
|
|
authors = ["Ethan Paul <24588726+enpaul@users.noreply.github.com>"]
|
2021-04-20 03:39:32 +00:00
|
|
|
description = "A plugin for Tox that lets you install test environment dependencies from the Poetry lockfile"
|
2020-09-23 22:40:31 +00:00
|
|
|
repository = "https://github.com/enpaul/tox-poetry-installer/"
|
2020-10-11 22:25:48 +00:00
|
|
|
packages = [
|
2020-11-12 02:26:59 +00:00
|
|
|
{include = "tox_poetry_installer"},
|
2020-10-11 22:25:48 +00:00
|
|
|
{include = "tests/*.py", format = "sdist"}
|
|
|
|
]
|
2020-11-12 02:27:38 +00:00
|
|
|
include = [
|
|
|
|
"tox_poetry_installer/py.typed"
|
|
|
|
]
|
2020-09-23 22:40:31 +00:00
|
|
|
keywords = ["tox", "poetry", "plugin"]
|
|
|
|
readme = "README.md"
|
|
|
|
classifiers = [
|
2020-12-05 23:09:01 +00:00
|
|
|
"Development Status :: 4 - Beta",
|
2020-09-23 22:40:31 +00:00
|
|
|
"Environment :: Plugins",
|
|
|
|
"Framework :: tox",
|
|
|
|
"Intended Audience :: Developers",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Operating System :: OS Independent",
|
2021-02-16 02:35:45 +00:00
|
|
|
"Programming Language :: Python :: 3",
|
2020-09-23 22:40:31 +00:00
|
|
|
"Programming Language :: Python :: 3.7",
|
|
|
|
"Programming Language :: Python :: 3.8",
|
2020-11-26 17:54:14 +00:00
|
|
|
"Programming Language :: Python :: 3.9",
|
2022-01-05 06:00:49 +00:00
|
|
|
"Programming Language :: Python :: 3.10",
|
2023-02-24 22:49:31 +00:00
|
|
|
"Programming Language :: Python :: 3.11",
|
2020-09-23 22:40:31 +00:00
|
|
|
"Programming Language :: Python :: Implementation :: CPython",
|
|
|
|
]
|
2020-09-23 06:17:30 +00:00
|
|
|
|
|
|
|
[tool.poetry.plugins.tox]
|
|
|
|
poetry_installer = "tox_poetry_installer"
|
|
|
|
|
2020-12-04 22:50:29 +00:00
|
|
|
[tool.poetry.extras]
|
2022-07-02 02:08:11 +00:00
|
|
|
poetry = ["poetry", "cleo"]
|
2020-12-04 22:50:29 +00:00
|
|
|
|
2020-09-23 06:17:30 +00:00
|
|
|
[tool.poetry.dependencies]
|
2022-07-02 02:08:11 +00:00
|
|
|
python = "^3.7"
|
2023-02-24 21:57:46 +00:00
|
|
|
cleo = {version = ">=1.0,<3.0", optional = true}
|
2023-05-19 17:56:00 +00:00
|
|
|
poetry = {version = ">=1.2.0,<1.5.0", optional = true}
|
2022-09-07 16:00:37 +00:00
|
|
|
poetry-core = "^1.1.0"
|
2020-12-17 06:05:16 +00:00
|
|
|
tox = "^3.8.0"
|
2020-09-23 06:17:30 +00:00
|
|
|
|
2022-07-03 03:27:48 +00:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2020-09-23 22:40:31 +00:00
|
|
|
bandit = "^1.6.2"
|
2022-07-02 02:08:11 +00:00
|
|
|
black = "^22.3.0"
|
2022-09-07 16:00:37 +00:00
|
|
|
blacken-docs = "^1.8.0"
|
2023-03-01 21:43:09 +00:00
|
|
|
ipython = {version = "^8.10.1", python = "^3.8"}
|
2022-01-05 06:40:02 +00:00
|
|
|
mdformat = "^0.6"
|
|
|
|
mdformat-gfm = "^0.2"
|
2022-01-05 05:45:02 +00:00
|
|
|
mypy = "^0.930"
|
2020-11-26 17:48:40 +00:00
|
|
|
pre-commit = "^2.7.1"
|
|
|
|
pre-commit-hooks = "^3.3.0"
|
2022-09-07 16:00:37 +00:00
|
|
|
pylint = "^2.13.0"
|
2020-09-25 01:01:20 +00:00
|
|
|
pytest = "^6.0.2"
|
|
|
|
pytest-cov = "^2.10.1"
|
2020-11-26 17:48:40 +00:00
|
|
|
reorder-python-imports = "^2.3.5"
|
2023-03-01 21:43:09 +00:00
|
|
|
safety = "^2.2.0"
|
2020-09-25 01:01:20 +00:00
|
|
|
toml = "^0.10.1"
|
2020-09-23 22:40:31 +00:00
|
|
|
tox = "^3.20.0"
|
2022-01-05 06:40:02 +00:00
|
|
|
types-toml = "^0.10.1"
|
2023-03-01 21:39:05 +00:00
|
|
|
# This is a workaround for this issue with the Poetry export
|
|
|
|
# plugin which was blocking the 'security' CI check:
|
|
|
|
#
|
|
|
|
# https://github.com/python-poetry/poetry-plugin-export/issues/176
|
|
|
|
virtualenv = ">=20.15,<20.16"
|
2020-09-23 06:17:30 +00:00
|
|
|
|
|
|
|
[build-system]
|
2022-09-07 16:00:37 +00:00
|
|
|
requires = ["poetry-core>=1.1.0"]
|
2020-11-12 05:41:54 +00:00
|
|
|
build-backend = "poetry.core.masonry.api"
|