-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (31 loc) · 752 Bytes
/
pyproject.toml
File metadata and controls
37 lines (31 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
[tool.poetry]
name = "Flask-Vault"
version = "1.0.0"
description = "Secure Credential Storage for Flask"
authors = ["Adriano Romanazzo <https://github.com/multiversecoder>"]
license = "MIT"
readme = "README.md"
packages = [{include = "flask_vault"}]
[tool.poetry.dependencies]
python = ">=3.8.1"
flask = ">=3.0.0"
cryptography = "^41.0.3"
[tool.black]
line-length = 130
[tool.isort]
profile = "black"
multi_line_output = 3
line_length = 130
include_trailing_comma = true
[tool.mypy]
python_version = 3.8
warn_return_any = true
warn_unused_configs = true
[tool.poetry.group.dev.dependencies]
black = "^23.7.0"
isort = "^5.12.0"
mypy = "^1.5.1"
flake8 = "^6.1.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"