-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (58 loc) · 1.52 KB
/
pyproject.toml
File metadata and controls
63 lines (58 loc) · 1.52 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "robotframework-confluentkafkalibrary"
dynamic = ["version"]
description = "Confluent Kafka library for Robot Framework"
readme = "README.md"
authors = [
{name = "Robert Karasek", email = "robo.karasek@gmail.com"},
]
license = "Apache-2.0"
license-files = ["LICEN[CS]E*"]
keywords = ["robotframework", "confluent", "kafka"]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Testing",
]
requires-python = ">=3.8"
dependencies = [
"robotframework >= 3.2.1",
"confluent-kafka == 2.12.2",
"requests >= 2.25.1",
]
[project.urls]
"Homepage" = "https://github.com/robooo/robotframework-ConfluentKafkaLibrary"
[project.optional-dependencies]
avro = [
"fastavro >= 1.3.2",
"avro >= 1.11.1",
]
json = [
"jsonschema >= 3.2.0",
"pyrsistent >= 0.20.0",
"orjson >= 3.10",
]
protobuf = [
"protobuf >= 4.22.0",
"googleapis-common-protos >= 1.66.0",
]
schemaregistry = [
"httpx>=0.26",
"cachetools >= 5.5.0",
"attrs >= 24.3.0",
"certifi",
"authlib >= 1.0.0",
]
all = [
"robotframework-confluentkafkalibrary[avro]",
"robotframework-confluentkafkalibrary[json]",
"robotframework-confluentkafkalibrary[protobuf]",
"robotframework-confluentkafkalibrary[schemaregistry]",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "ConfluentKafkaLibrary.version.VERSION"}