-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
61 lines (51 loc) · 1.36 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
[tool.poetry]
name = "etcd3-client"
version = "0.98.0"
description = "Python client for the etcd3"
authors = ["GoodData Inc. <[email protected]>", "etcd3 authors"]
readme = "README.md"
packages = [{include = "etcd3", from = "src"}]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
]
[tool.poetry.dependencies]
python = ">=3.9"
grpcio = ">=1.59.3,<2.0.0"
protobuf = ">=5.27.1,<6.0.0"
[tool.poetry.group.dev.dependencies]
flake8 = "7.0.0"
black = "~24.4.2"
isort = "^5.11.4"
mypy = "1.10.0"
mock = "~5.1.0"
pytest = "^7.2.0"
pytest-cov = "^4.0.0"
pytest-docker = "~3.1.1"
types-protobuf= "~4.21.0.2"
[tool.pytest.ini_options]
minversion = 7.0
pythonpath = [ "tests", "src" ]
testpaths = [ "tests" ]
[tool.mypy]
disallow_untyped_defs = true
warn_redundant_casts = true
strict_equality = true
mypy_path = "etcd3"
[[tool.mypy.overrides]]
module = ["mypy-grpc.*", "grpc.*"]
ignore_missing_imports = true
[tool.isort]
profile = "black"
[tool.black]
target-version = ['py39']
# extend-exclude = 'regex here'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"