-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpyproject.toml
More file actions
115 lines (105 loc) · 2.25 KB
/
Copy pathpyproject.toml
File metadata and controls
115 lines (105 loc) · 2.25 KB
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
[build-system]
requires = [
"setuptools-scm[toml]==10.0.5",
"setuptools==82.0.1",
"wheel==0.47.0",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["aetcd"]
[project]
name = "aetcd"
description = "Python asyncio-based client for etcd"
readme = "README.rst"
license = "Apache-2.0"
license-files = ["LICENSE"]
keywords = ["etcd", "asyncio", "client"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Database",
]
authors = [
{name = "Andrey Martyanov", email = "andrey@martyanov.com"},
]
requires-python = ">=3.10,<4"
dependencies = [
"grpcio>1.66.0,<2",
"protobuf>4,<8",
]
dynamic = ["version"]
[project.optional-dependencies]
dev = [
"flake8-commas==4.0.0",
"flake8-docstrings==1.7.0",
"flake8-isort==7.0.0",
"flake8-pyproject==1.2.4",
"flake8-quotes==3.4.0",
"flake8==7.3.0",
"grpcio-tools==1.75.1",
"pep8-naming==0.15.1",
"twine==6.2.0",
]
docs = [
"sphinx==8.1.3",
"sphinx_rtd_theme==3.1.0",
]
test = [
"pytest-asyncio==1.3.0",
"pytest-cov==7.1.0",
"pytest-mock==3.15.1",
"pytest==9.0.3",
]
[project.urls]
Documentation = "https://aetcd.readthedocs.io"
Code = "https://github.com/martyanov/aetcd"
Issues = "https://github.com/martyanov/aetcd/issues"
[tool.setuptools_scm]
[tool.flake8]
max-line-length = 95
max-complexity = 10
ignore = [
"D1",
]
exclude = [
"aetcd/rpc",
]
application-import-names = [
"aetcd",
]
[tool.pytest.ini_options]
addopts = "--cov=aetcd --no-cov-on-fail"
testpaths = [
"aetcd",
"tests",
]
asyncio_mode = "auto"
[tool.coverage.report]
show_missing = true
exclude_lines = [
"pragma: no cover",
"if __name__ == '__main__':",
]
[tool.coverage.run]
omit = [
"aetcd/rpc/*",
]
[tool.isort]
line_length = 95
multi_line_output = 3
force_single_line = true
lines_after_imports = 2
include_trailing_comma = true
src_paths = [
"aetcd",
"tests",
]
skip_glob = [
"aetcd/rpc/*",
]