keep-it-secret/pyproject.toml

42 lines
1003 B
TOML
Raw Normal View History

2024-01-04 19:30:54 +00:00
[tool.poetry]
name = "keep-it-secret"
2024-06-05 07:10:16 +00:00
version = "1.2.2"
2024-01-04 19:30:54 +00:00
description = "Keep It Secret by BTHLabs"
authors = ["Tomek Wójcik <contact@bthlabs.pl>"]
2024-01-18 20:28:55 +00:00
maintainers = ["BTHLabs <contact@bthlabs.pl>"]
2024-01-04 19:30:54 +00:00
license = "MIT"
readme = "README.md"
2024-01-18 20:28:55 +00:00
homepage = "https://projects.bthlabs.pl/keep-it-secret/"
repository = "https://git.bthlabs.pl/tomekwojcik/keep-it-secret/"
documentation = "https://projects.bthlabs.pl/keep-it-secret/"
2024-01-04 19:30:54 +00:00
[tool.poetry.dependencies]
python = "^3.10"
boto3 = {version = ">=1.34.0", optional = true}
2024-02-08 20:52:08 +00:00
hvac = {version = ">=2.1.0", optional = true}
2024-01-04 19:30:54 +00:00
[tool.poetry.group.dev.dependencies]
boto3 = "1.34.8"
flake8 = "6.1.0"
flake8-commas = "2.1.0"
2024-01-18 20:28:55 +00:00
furo = "2023.9.10"
2024-02-08 20:52:08 +00:00
hvac = "2.1.0"
2024-01-04 19:30:54 +00:00
invoke = "1.7.3"
ipdb = "0.13.13"
ipython = "8.19.0"
moto = "4.2.12"
mypy = "1.8.0"
pytest = "7.4.3"
pytest-env = "1.1.3"
pytest-mock = "3.12.0"
sphinx = "7.2.6"
twine = "4.0.2"
[tool.poetry.extras]
aws = ["boto3"]
2024-02-08 20:52:08 +00:00
vault = ["hvac"]
2024-01-04 19:30:54 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"