-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
33 lines (31 loc) · 1.03 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
[build-system]
requires = ["setuptools==70.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "django-kafka"
version = "0.5.6"
dependencies = [
"django>=4.0,<6.0",
"confluent-kafka[avro, schema-registry]==2.4.0"
]
requires-python = ">=3.11"
authors = [
{ name = "RegioHelden GmbH", email = "[email protected]" },
]
description = "Confluent's Kafka Python Client combined with Django"
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE" }
keywords = ["django", "kafka"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Repository = "https://github.com/RegioHelden/django-kafka"
Issues = "https://github.com/RegioHelden/django-kafka/issues"
Changelog = "https://github.com/RegioHelden/django-kafka/blob/main/CHANGELOG.md"