2020-09-23 06:17:30 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "tox-poetry-installer"
|
2023-08-02 15:21:33 +00:00
|
|
|
version = "1.0.0b1"
|
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.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",
|
2024-08-16 18:30:20 +00:00
|
|
|
"Programming Language :: Python :: 3.12",
|
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"
|
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2024-08-16 18:30:20 +00:00
|
|
|
python = "^3.8"
|
2024-08-13 17:53:26 +00:00
|
|
|
cleo = ">=1.0,<3.0"
|
|
|
|
poetry = "^1.5.0"
|
2022-09-07 16:00:37 +00:00
|
|
|
poetry-core = "^1.1.0"
|
2024-08-16 16:50:51 +00:00
|
|
|
tox = "^4.1"
|
2020-09-23 06:17:30 +00:00
|
|
|
|
2022-07-03 03:27:48 +00:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2024-08-16 16:50:51 +00:00
|
|
|
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"}
|
2024-08-16 18:26:51 +00:00
|
|
|
isort = {version = "^5.13.2", python = "^3.10"}
|
2024-08-16 16:50:51 +00:00
|
|
|
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"}
|
2020-09-23 06:17:30 +00:00
|
|
|
|
2024-08-16 18:26:51 +00:00
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
|
|
|
force_single_line = "true"
|
|
|
|
lines_after_imports = 2
|
|
|
|
|
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"
|