-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (75 loc) · 2.04 KB
/
pyproject.toml
File metadata and controls
84 lines (75 loc) · 2.04 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
[tool.poetry]
name = "esque"
version = "1.0.0a2"
description = "esque - an operational kafka tool."
authors = ["real.digital <opensource@real-digital.de>"]
license = "MIT"
readme = "README.md"
include = [
"esque/config/sample_config.yaml",
"README.md",
"LICENSE",
"esque/validation/schemas/*.yaml"
]
exclude = ["tests/**/*"]
repository = "https://github.com/real-digital/esque"
keywords = ["kafka", "cli", "commandline", "administration", "operation"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"Topic :: System :: Systems Administration",
"Topic :: Software Development",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
# esque entrypoint
[tool.poetry.scripts]
esque = "esque.cli.commands:esque"
# Dependencies
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
avro-python3 = "^1.10"
click = "^8.1"
confluent-kafka = { version = "^2.8", extras = ["avro"] }
fastavro = "^1.10"
pendulum = "^3.0"
kafka-python = "^2.0.3"
pyyaml = "6.0.2"
requests = "^2.32"
yamale = "6.0.0"
toml = "^0.10.0"
more-itertools = "^10.6"
protobuf = "^5.29.3"
pre-commit = "^4.1.0"
kafka-python-ng = "2.2.3"
[tool.poetry.group.dev.dependencies]
pytest = "~8"
pytest-mock = "^3.11"
pytest-cov = "^6.0.0"
flake8 = "7.1.1"
black = { version = "25.1.0", allow-prereleases = true }
isort = { version = "^6.0.0", extras = ["pyproject"] }
bandit = "1.8.2"
coveralls = "4.0.1"
pytest-cases = "3.8.6"
[tool.black]
line-length = 119
target_version = ['py39']
include = '\.pyi?$'
[tool.isort]
line_length = 119
multi_line_output = 3
include_trailing_comma = true
default_section = "THIRDPARTY"
known_first_party = ["esque", "tests"]
[tool.pytest.ini_options]
markers = [
"integration: mark a test as an integration test"
]
[build-system]
requires = ["poetry>=1.0.2"]
build-backend = "poetry.masonry.api"