tox-poetry-installer/pyproject.toml

68 lines
2.0 KiB
TOML
Raw Normal View History

2020-09-23 06:17:30 +00:00
[tool.poetry]
name = "tox-poetry-installer"
version = "1.0a1"
2020-09-23 06:17:30 +00:00
license = "MIT"
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"
repository = "https://github.com/enpaul/tox-poetry-installer/"
2020-10-11 22:25:48 +00:00
packages = [
{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"
]
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",
2021-02-16 02:35:45 +00:00
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
2022-01-05 06:00:49 +00:00
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
]
2020-09-23 06:17:30 +00:00
[tool.poetry.plugins.tox]
poetry_installer = "tox_poetry_installer"
[tool.poetry.extras]
poetry = ["poetry", "cleo"]
2020-09-23 06:17:30 +00:00
[tool.poetry.dependencies]
python = "^3.7"
cleo = {version = "^1.0.0a5", optional = true, allow-prereleases = true}
poetry = {version = "1.2.0b2", optional = true, allow-prereleases = true}
poetry-core = {version = "1.1.0b2", allow-prereleases = true}
tox = "^3.8.0"
2020-09-23 06:17:30 +00:00
[tool.poetry.group.dev.dependencies]
bandit = "^1.6.2"
black = "^22.3.0"
2022-09-06 19:12:43 +00:00
blacken-docs = { version = "^1.8.0", python = "^3.7" }
ipython = { version = "^7.18.1", python = "^3.7" }
mdformat = "^0.6"
mdformat-gfm = "^0.2"
2022-01-05 05:45:02 +00:00
mypy = "^0.930"
pre-commit = "^2.7.1"
pre-commit-hooks = "^3.3.0"
pylint = { version = "^2.13.0", python = "^3.7" }
pytest = "^6.0.2"
pytest-cov = "^2.10.1"
reorder-python-imports = "^2.3.5"
safety = "^1.9.0"
toml = "^0.10.1"
tox = "^3.20.0"
types-toml = "^0.10.1"
2020-09-23 06:17:30 +00:00
[build-system]
requires = ["poetry-core>=1.1.0b2"]
build-backend = "poetry.core.masonry.api"