-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (59 loc) · 2.18 KB
/
Copy pathpyproject.toml
File metadata and controls
69 lines (59 loc) · 2.18 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
[build-system]
requires = ["setuptools>=77.0"]
build-backend = "setuptools.build_meta"
[project]
name = "kafka-python"
dynamic = ["version"]
authors = [{name = "Dana Powers", email = "dana.powers@gmail.com"}]
description = "Pure Python client for Apache Kafka"
keywords = ["apache kafka", "kafka"]
readme = "README.rst"
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.8"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[project.urls]
Homepage = "https://github.com/dpkp/kafka-python"
Documentation = "https://kafka-python.readthedocs.io"
Repository = "https://github.com/dpkp/kafka-python"
Issues = "https://github.com/dpkp/kafka-python/issues"
Changelog = "https://github.com/dpkp/kafka-python/blob/master/CHANGES.md"
[project.scripts]
kafka-python = "kafka.cli:run_cli"
[project.optional-dependencies]
crc32c = ["crc32c"]
lz4 = ["lz4"]
snappy = ["python-snappy"]
zstd = ["zstandard"]
testing = ["pytest", "pytest-mock", "pytest-timeout"]
benchmarks = ["pyperf"]
[tool.setuptools]
include-package-data = false
[tool.setuptools.package-data]
kafka = ["protocol/schemas/resources/*.json", "coordinator/assignors/sticky/*.json", "**/*.pyi"]
[tool.setuptools.packages.find]
exclude = ["test"]
namespaces = false
[tool.setuptools.dynamic]
version = {attr = "kafka.__version__"}
[tool.pylint.main]
ignore-patterns = '.*\.pyi$'
[tool.pytest.ini_options]
log_format = "%(asctime)s.%(msecs)03d %(levelname)-8s %(thread)d:%(threadName)s %(name)-23s %(message)s"
log_level = "DEBUG"
addopts = "--durations=10 --timeout=300 --timeout-method=thread"