21 lines
412 B
TOML
21 lines
412 B
TOML
[project]
|
|
name = "apim-apps"
|
|
version = "0.1.0"
|
|
description = "Axway API Manager compliance tool — manage organisations and applications from a YAML manifest"
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"requests>=2.32",
|
|
"pyyaml>=6.0",
|
|
"urllib3>=2.0",
|
|
]
|
|
|
|
[dependency-groups]
|
|
dev = [
|
|
"pytest>=8.0",
|
|
"pytest-mock>=3.14",
|
|
]
|
|
|
|
[tool.pytest.ini_options]
|
|
testpaths = ["tests"]
|