-
Notifications
You must be signed in to change notification settings - Fork 22
/
setup.cfg
97 lines (82 loc) · 1.78 KB
/
setup.cfg
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[metadata]
name = vault-cli
description = CLI tool for hashicorp vault
author = PeopleDoc
author_email = [email protected]
url = https://github.com/peopledoc/vault-cli
long_description = file: README.rst
keywords = hashicorp vault cli
license = Apache Software License
classifiers =
Development Status :: 4 - Beta
Intended Audience :: Developers
License :: OSI Approved :: Apache Software License
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
[options]
zip_safe = True
include_package_data = True
packages = find:
install_requires =
requests
Click>=7.0
pyyaml>=5.3.1
jinja2
hvac<0.10.12 # Temporary fix for #191
[options.entry_points]
console_scripts =
vault-cli = vault_cli.cli:main
[options.extras_require]
# If you plan to import the testing module
testing =
pytest
dev =
tox
twine
black
isort
build
test =
pytest
pytest-mock
requests-mock
pytest-cov
pytest-click
lint =
mypy
flake8
black
isort
types-PyYAML
types-requests
types-setuptools
types-toml
docs =
doc8
sphinx
sphinx_autodoc_typehints
sphinxcontrib-programoutput
docs_spelling =
sphinxcontrib-spelling
[isort]
profile = black
[tool:pytest]
addopts = --cov-report term-missing --cov-branch --cov-report html --cov-report term --cov=vault_cli -vv
testpaths =
tests/unit
tests/integration
junit_family=xunit2
[mypy-backports.functools_lru_cache.*,setuptools.*,pytest.*]
ignore_missing_imports = True
[flake8]
ignore = E203, E266, E501, W503
max-line-length = 80
max-complexity = 18
select = B,C,E,F,W,T4,B9
[coverage:report]
exclude_lines =
raise NotImplementedError
[doc8]
max-line-length=88
ignore-path=docs/_build