-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
86 lines (81 loc) · 2.05 KB
/
pyproject.toml
File metadata and controls
86 lines (81 loc) · 2.05 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
85
86
[project]
name = "commlib-py"
version = "0.13.2"
description = "Communication Library for Python implementing the most common communication patterns for CyberPhysical Systems."
readme = "README.md"
license = {text = "MIT"}
requires-python = ">=3.9"
authors = [{name = "Konstantinos Panayiotou", email = "klpanagi@ece.auth.gr"}]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"wheel>=0.38.0",
"pydantic>=2.0.0",
"ujson>=5.7.0",
"rich>=13.7.0",
"requests>=2.32.0",
"urllib3>=2.6.0",
]
[project.optional-dependencies]
mqtt = [
"paho-mqtt>=1.6.1,<2.0.0",
]
redis = [
"redis[hiredis]>=5.0.1",
]
amqp = [
"pika>=1.3.1",
]
kafka = [
"confluent-kafka>=2.3.0",
]
all = [
"paho-mqtt>=1.6.1,<2.0.0",
"redis[hiredis]>=5.0.1",
"pika>=1.3.1",
"confluent-kafka>=2.3.0",
]
performance = [
"orjson>=3.9.0",
"msgpack>=1.0.5",
"lz4>=4.3.2",
"fastuuid>=0.4.2",
]
dev = [
"bump2version>=0.5.11",
"wheel>=0.42.0",
"flake8>=3.7.8",
"coverage>=7.0.1",
"pip>=23",
"build>=1.0.0",
"twine>=4.0.0",
"pytest>=7.0.0",
"pytest-benchmark>=4.0.0",
"psutil>=5.9.0",
"paho-mqtt>=1.6.1,<2.0.0",
"redis[hiredis]>=5.0.1",
"pika>=1.3.1",
"confluent-kafka>=2.3.0",
"mypy>=1.0.0",
]
[project.urls]
Repository = "https://github.com/robotics-4-all/commlib-py"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = {find = {include = ["commlib*"]}}
[tool.setuptools.package-data]
commlib = ["py.typed"]