Files
python-hvac/pyproject.toml
Igor Shatunov d3251806fa
Some checks failed
continuous-integration/drone/push Build is failing
Add poetry and fix CICD
2023-01-20 14:55:08 +02:00

32 lines
583 B
TOML

[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = [
"tests",
]
python_files = [
"test*.py",
]
[tool.poetry]
name = "python-hvac"
version = "0.1.1"
description = "Python HVAC for experiments"
authors = ["Igor I Shatunov <raider@psynet.su>"]
license = "BSD"
packages = [ { include = "app" }, ]
[tool.poetry.scripts]
python-hvac = "app.main:main"
[tool.poetry.dependencies]
python = "^3.10"
hvac = "^1.0.2"
[tool.poetry.dev-dependencies]
pytest = "^7.2.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"