-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
78 lines (64 loc) · 1.67 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
66
67
68
69
70
71
72
73
74
75
76
77
78
[tool.poetry]
name = "kafka-schema-registry-admin"
version = "0.5.3"
description = "Pure HTTP client to manage schemas in Schema Registry"
authors = ["John Preston <[email protected]>"]
license = "Apache License 2.0"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
readme = "README.rst"
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.28.0"
httpx = "^0.27.0"
[tool.poetry.group.dev.dependencies]
testcontainers = "^4.0.0"
black = "^24"
isort = "^5.10.1"
coverage = "^7.4"
Sphinx = "^7.2"
pre-commit = "^3.6"
pytest = "^8.1"
tbump = "^6.9.0"
pytest-asyncio = "^0.23.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.tbump]
github_url = "https://github.com/compose-x/kafka_schema_registry_admin"
[tool.tbump.version]
current = "0.5.3"
regex = '''
(?P<major>\d+)
\.
(?P<minor>\d+)
\.
(?P<patch>\d+)
(?:[-.](?P<rc>[\S]+))?
'''
[tool.tbump.git]
message_template = "Bump to {new_version}"
tag_template = "v{new_version}"
[[tool.tbump.file]]
src = "kafka_schema_registry_admin/__init__.py"
[[tool.tbump.file]]
src = "pyproject.toml"
[[tool.tbump.before_commit]]
name = "Files format"
cmd = "make conform"
[tool.coverage.report]
exclude_lines = [
"if __name__ == '__main__'",
"pragma: no cover",
"if TYPE_CHECKING:"
]
[tool.coverage.run]
relative_files = true