2022-09-23 09:01:38 +00:00
|
|
|
[build-system]
|
2022-10-05 16:41:47 +00:00
|
|
|
requires = ["setuptools>=65.0.0", "wheel"]
|
2022-09-23 09:01:38 +00:00
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "neofs-testlib"
|
2022-11-03 14:03:06 +00:00
|
|
|
version = "0.4.0"
|
2022-09-23 09:01:38 +00:00
|
|
|
description = "Building blocks and utilities to facilitate development of automated tests for NeoFS system"
|
|
|
|
readme = "README.md"
|
|
|
|
authors = [{ name = "NSPCC", email = "info@nspcc.ru" }]
|
|
|
|
license = { text = "GNU General Public License v3 (GPLv3)" }
|
|
|
|
classifiers = [
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
]
|
|
|
|
keywords = ["neofs", "test"]
|
|
|
|
dependencies = [
|
|
|
|
"allure-python-commons>=2.9.45",
|
2022-10-05 16:41:47 +00:00
|
|
|
"docker>=4.4.0",
|
2022-10-03 20:03:24 +00:00
|
|
|
"importlib_metadata>=5.0; python_version < '3.10'",
|
2022-10-26 09:40:57 +00:00
|
|
|
"neo-mamba==0.10.0",
|
2022-09-23 09:01:38 +00:00
|
|
|
"paramiko>=2.10.3",
|
|
|
|
"pexpect>=4.8.0",
|
2022-10-05 16:41:47 +00:00
|
|
|
"requests>=2.28.0",
|
2022-09-23 09:01:38 +00:00
|
|
|
]
|
|
|
|
requires-python = ">=3.9"
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
|
|
|
dev = ["black", "bumpver", "isort", "pre-commit"]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Homepage = "https://github.com/nspcc-dev/neofs-testlib"
|
|
|
|
|
2022-10-03 20:03:24 +00:00
|
|
|
[project.entry-points."neofs.testlib.reporter"]
|
2022-10-06 10:17:19 +00:00
|
|
|
allure = "neofs_testlib.reporter.allure_handler:AllureHandler"
|
2022-10-03 20:03:24 +00:00
|
|
|
|
2022-10-05 16:41:47 +00:00
|
|
|
[project.entry-points."neofs.testlib.hosting"]
|
|
|
|
docker = "neofs_testlib.hosting.docker_host:DockerHost"
|
|
|
|
|
2022-08-24 11:41:11 +00:00
|
|
|
[tool.isort]
|
|
|
|
profile = "black"
|
2022-09-23 09:01:38 +00:00
|
|
|
src_paths = ["src", "tests"]
|
2022-08-24 11:41:11 +00:00
|
|
|
line_length = 100
|
|
|
|
|
|
|
|
[tool.black]
|
|
|
|
line-length = 100
|
|
|
|
target-version = ["py39"]
|
2022-09-23 09:01:38 +00:00
|
|
|
|
|
|
|
[tool.bumpver]
|
2022-11-03 14:03:06 +00:00
|
|
|
current_version = "0.4.0"
|
2022-09-23 09:01:38 +00:00
|
|
|
version_pattern = "MAJOR.MINOR.PATCH"
|
|
|
|
commit_message = "Bump version {old_version} -> {new_version}"
|
2022-10-26 06:43:12 +00:00
|
|
|
commit = true
|
2022-09-23 09:01:38 +00:00
|
|
|
tag = false
|
|
|
|
push = false
|
|
|
|
|
|
|
|
[tool.bumpver.file_patterns]
|
|
|
|
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
|
|
|
|
"src/neofs_testlib/__init__.py" = ["{version}"]
|