-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpyproject.toml
More file actions
110 lines (100 loc) · 2.55 KB
/
pyproject.toml
File metadata and controls
110 lines (100 loc) · 2.55 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
[project]
name = 'aiozk'
version = '0.32.0'
description = 'Asyncio client for Zookeeper.'
authors = [
{ name = 'Kirill Pinchuk', email = 'cybergrind@gmail.com' }
]
maintainers = [
{ name = 'Kirill Pinchuk', email = 'cybergrind@gmail.com' }
]
license = { text = 'MIT' }
readme = 'README.md'
requires-python = '>=3.8'
keywords = ['zookeeper', 'asyncio', 'async']
classifiers = [
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS',
'Operating System :: MacOS :: MacOS X',
'Operating System :: POSIX',
'Operating System :: POSIX :: Linux',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: Implementation',
'Programming Language :: Python :: Implementation :: CPython',
'Topic :: Software Development',
'Topic :: Software Development :: Libraries',
]
dependencies = []
[build-system]
requires = ['setuptools', 'wheel', 'hatchling']
build-backend = 'hatchling.build'
[tool.hatch.build]
exclude = ['.*']
[tool.hatch.commands]
prerelease = 'hatch build'
[project.urls]
Homepage = 'http://github.com/micro-fan/aiozk'
Repository = 'http://github.com/micro-fan/aiozk'
# installed with: uv sync
[dependency-groups]
dev = [
'ruff',
"pre-commit",
'uv>=0.6.1',
'coverage',
'flake8',
'pytest',
'pytest-asyncio',
'asynctest',
'pytest-cov',
'tox',
'tox-docker',
'codecov',
]
[tool.ruff]
line-length = 120
target-version = 'py38'
indent-width = 4
exclude = ['.venv', '.git']
[tool.ruff.format]
quote-style = 'single'
[tool.ruff.lint.isort]
combine-as-imports = true
known-first-party = ['aiozk']
lines-after-imports = 2
[tool.ruff.lint]
ignore = [
'T201', # print
'G004', # logging format
'Q000', # quotes
'Q001', # quotes
'Q003', # quotes
]
fixable = ['ALL']
select = [
'E', # pycodestyle
'F', # pyflakes
'I', # isort
'G', # flake8-logging-format
'ASYNC', # flake8-async
'PIE', # flake8-pie
'T20', # flake8-print
'PT', # flake8-pytest-style
'Q', # flake8-quotes
'RUF',
]
exclude = []
[tool.ruff.lint.flake8-quotes]
docstring-quotes = 'double'
inline-quotes = 'single'
multiline-quotes = 'single'