-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
91 lines (76 loc) · 2.08 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
79
80
81
82
83
84
85
86
87
88
89
90
91
[tool.poetry]
name = "cdk-gw-tools"
description = "Conduktor Proxy API Client"
version = "3.0.0"
authors = ["John \"Preston\" Mille <[email protected]>"]
readme = "README.md"
license = "LICENSE"
packages = [{ include = "cdk_gw_tools" }]
keywords = ["compose-x", "conduktor", "kafka", "proxy"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
include = [
"cdk_gw_tools/**/*.json",
]
exclude = ["*.pyc", "*~", "*pycache*"]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/JohnPreston/cdk-gw-tools/issues"
"Source (GitHub)" = "https://github.com/JohnPreston/cdk-gw-tools"
"Source (CodeBerg)" = "https://codeberg.org/JohnPreston/cdk-gw-tools"
[tool.poetry.dependencies]
python = "^3.9"
cdk-proxy-api-client = "3.0.0"
compose-x-common = "^1.4.7"
jsonschema = ">=4.18"
importlib-resources = "^6.4"
pyyaml = "^6.0"
dacite = "^1.8.1"
[tool.poetry.group.dev.dependencies]
pre-commit = "^3.1.1"
black = ">=23.9,<25.0"
isort = "^5.12"
pyupgrade = "^3.3.1"
tbump = "^6.9.0"
datamodel-code-generator = "^0.25.1"
[tool.poetry.scripts]
cdk-cli = "cdk_gw_tools.cli:main"
[tool.tbump]
github_url = "https://github.com/JohnPreston/cdk-gw-tools"
[tool.tbump.version]
current = "3.0.0"
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 = "pyproject.toml"
[[tool.tbump.file]]
src = "cdk_gw_tools/__init__.py"
[tool.black]
line-length = 88
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
known_first_party = "kelvin"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"