-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
40 lines (33 loc) · 935 Bytes
/
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
[tool.poetry]
name = "hc_pyconsul"
version = "0.3.1"
description = "API client for HashiCorp Consul"
authors = ["Arden Shackelford <[email protected]>"]
license = "Apache 2.0"
packages = [
{ include = "hc_pyconsul" },
{ include = "hc_pyconsul/py.typed" }
]
[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
httpx = "^0.23.0"
pydantic = "^1.9.0"
opentelemetry-api = "^1.13.0"
[tool.poetry.group.testing.dependencies]
pytest-cov = "^3.0.0"
pylint = "^2.16.1"
flake8 = "^6.0.0"
mypy = "^0.950"
respx = "^0.20.1"
pytest = "^7.2.1"
[build-system]
requires = ["poetry-core>=1.4.0"]
build-backend = "poetry.core.masonry.api"
[tool.pylint.'MESSAGES CONTROL']
disable = "missing-module-docstring,missing-class-docstring,unnecessary-pass,raise-missing-from,too-few-public-methods"
extension-pkg-whitelist = "pydantic"
[tool.pylint.'FORMAT']
max-line-length = 150
[tool.mypy]
namespace_packages = true
plugins = ["pydantic.mypy"]