-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpyproject.toml
63 lines (56 loc) · 1.56 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
[project]
name = "kaskade"
version = "4.0.3"
description = "kaskade is a text user interface for kafka"
authors = [{ name = "Saúl Piña", email = "[email protected]" }]
license = { text = "MIT" }
readme = "README.md"
keywords = ["kafka", "kaskade"]
classifiers = [
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Operating System :: MacOS",
"Operating System :: Unix",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
requires-python = ">=3.10,<3.14"
dependencies = [
"cloup>=3.0",
"textual>=1.0",
"confluent-kafka[avro,json,protobuf]>=2.8",
]
[project.scripts]
kaskade = "kaskade.main:cli"
[project.urls]
homepage = "https://github.com/sauljabin/kaskade"
repository = "https://github.com/sauljabin/kaskade"
documentation = "https://github.com/sauljabin/kaskade"
changelog = "https://github.com/sauljabin/kaskade/blob/main/CHANGELOG.md"
issues = "https://github.com/sauljabin/kaskade/issues"
funding = "https://github.com/sponsors/sauljabin"
[tool.poetry.group.dev.dependencies]
black = "*"
faker = "*"
pre-commit = "*"
ruff = "*"
mypy = "*"
types-attrs = "*"
types-protobuf = "*"
changeloggh = "*"
textual-dev = "*"
typos = "*"
parameterized = "*"
testcontainers = "*"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
[tool.ruff]
line-length = 100
[tool.typos]
type.lock.extend-glob = ["*.lock"]
type.lock.check-file = true