-
Notifications
You must be signed in to change notification settings - Fork 1.4k
/
Copy pathpyproject.toml
54 lines (48 loc) · 1.75 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "kafka-python"
dynamic = ["version"]
authors = [{name = "Dana Powers", email = "[email protected]"}]
description = "Pure Python client for Apache Kafka"
keywords = ["apache kafka", "kafka"]
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development :: Libraries :: Python Modules",
]
urls = {Homepage = "https://github.com/dpkp/kafka-python"}
[project.optional-dependencies]
crc32c = ["crc32c"]
lz4 = ["lz4"]
snappy = ["python-snappy"]
zstd = ["zstandard"]
testing = ["pytest", "mock", "pytest-mock"]
[tool.setuptools]
include-package-data = false
license-files = [] # workaround for https://github.com/pypa/setuptools/issues/4759
[tool.setuptools.packages.find]
exclude = ["test"]
namespaces = false
[tool.distutils.bdist_wheel]
universal = 1
[tool.setuptools.dynamic]
version = {attr = "kafka.__version__"}