forked from sauljabin/kaskade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (51 loc) · 1.18 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
[tool.poetry]
name = "kaskade"
version = "2.3.2"
description = "kaskade is a terminal user interface for kafka"
authors = ["Saúl Piña <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/sauljabin/kaskade"
repository = "https://github.com/sauljabin/kaskade"
documentation = "https://github.com/sauljabin/kaskade"
keywords = ["kafka", "kaskade"]
classifiers = [
"Environment :: Console",
"Operating System :: MacOS",
"Operating System :: Unix"
]
include = [
"LICENSE",
]
packages = [
{ include = "kaskade" },
]
[tool.poetry.dependencies]
python = ">=3.10 <3.13"
cloup = "^3.0"
textual = "^0.72"
confluent-kafka = {extras = ["avro", "json", "protobuf"], version = "^2.5"}
[tool.poetry.dev-dependencies]
black = "*"
faker = "*"
toml = "*"
pre-commit = "*"
ruff = "*"
mypy = "*"
types-attrs = "*"
types-protobuf = "*"
changeloggh = "*"
textual-dev = "*"
typos = "*"
[build-system]
requires = ["poetry-core>=1.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
[tool.poetry.scripts]
kaskade = "kaskade.main:cli"