-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (52 loc) · 1.1 KB
/
pyproject.toml
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[tool.poetry]
name = "nameko-vault"
version = "0.4.0"
description = "A Nameko extension to provide connection with Vault"
authors = ["Instruct Developers <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/instruct-br/nameko-vault"
repository = "https://github.com/instruct-br/nameko-vault"
keywords = ["nameko", "vault"]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
]
include = [
"LICENSE",
]
[tool.poetry.dependencies]
python = "^3.6"
nameko = "^2.12.0"
hvac = "^0.10.5"
[tool.poetry.dev-dependencies]
black = "^20.8b1"
flake8 = "^3.8.3"
pytest = "^6.0.1"
[tool.black]
line-length = 79
skip-string-normalization = true
target-version = ['py38']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
)
'''
[tool.pytest.ini_options]
python_files = "test_*.py tests_*.py"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"