-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (62 loc) · 1.62 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
58
59
60
61
62
63
64
65
[tool.poetry]
name = "hvac"
version = "1.1.1"
description = "HashiCorp Vault API client"
readme = "README.md"
authors = [
"Ian Unruh <[email protected]>",
"Jeffrey Hogan <[email protected]>",
]
maintainers = [
"Brian Scholer",
"Colin McAllister <[email protected]>",
"Mike Adams",
]
repository = "https://github.com/hvac/hvac"
documentation = "https://hvac.readthedocs.io/en/stable/overview.html"
license = "Apache-2.0"
keywords = ["hashicorp", "vault"]
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: Implementation :: CPython",
]
[tool.poetry.dependencies]
python = "^3.6.2"
pyhcl = "^0.4.4"
requests = "^2.27.1"
[tool.poetry.dev-dependencies]
Werkzeug = "2.0.3"
Authlib = "^1.0.1"
black = "22.6.0"
Flask = "2.0.3"
Flask-SQLAlchemy = "^2.5.1"
flake8 = "4.0.1"
codecov = "^2.1.12"
coverage = "6.2"
ipaddress = "^1.0.23"
mock = "^4.0.3"
nose = "^1.3.7"
parameterized = "^0.8.1"
pytest = "7.0.1"
pytest-cov = "^3.0.0"
python-ldap-test = "^0.3.1"
python-jwt = "^3.3.3"
requests-mock = "^1.9.3"
semantic-version = "^2.10.0"
autodocsumm = "0.1.13"
m2r2 = "0.2.5"
Sphinx = "3.1.2"
sphinx-rtd-theme = "0.5.0"
mistune = "0.8.4"
docutils = "<0.18"
packaging = "<23"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"