-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.cfg
32 lines (30 loc) · 854 Bytes
/
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
[metadata]
name = keyvault
version = 0.2.1
author = Melvin Folkers, Erfan Nariman
author_email = [email protected]
description = A small package for handling project secrets
long_description = file: README.md
long_description_content_type = text/markdown
keywords = python, azure, keyvault
url = https://github.com/zypp-io/keyvault
project_urls =
Bug Tracker = https://github.com/zypp-io/keyvault/issues
Source = https://github.com/zypp-io/keyvault
classifiers =
Programming Language :: Python :: 3
License :: OSI Approved :: MIT License
Operating System :: OS Independent
[options]
packages = keyvault
python_requires = >=3.6
install_requires =
azure-identity>=1.7.1
azure-keyvault-secrets>=4.3.0
tqdm>=4.62.1
[flake8]
statistics = True
count = True
max-complexity=10
max-line-length=120
per-file-ignores=__init__.py: F401