-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (35 loc) · 1.12 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "quic_iot_gateway"
version = "0.1"
authors = [
{ name="Anupal Mishra", email="anupalmishra@gmail.com" },
]
description = "Multi-protocol aggregation over QUIC for IoT communication."
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"aioquic",
"aiocoap",
"aiomqtt",
"asyncio-dgram",
"colorlog"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[project.scripts]
qig_server = "quic_iot_gateway.scripts.qig_server:main"
qig_client = "quic_iot_gateway.scripts.qig_client:main"
tig_server = "quic_iot_gateway.scripts.tig_server:main"
tig_client = "quic_iot_gateway.scripts.tig_client:main"
coap_server = "quic_iot_gateway.scripts.coap_server:start_coap_server"
coap_client = "quic_iot_gateway.scripts.coap_client:main"
mqtt_sn_client = "quic_iot_gateway.scripts.mqtt_sn_client:main"
[project.urls]
Homepage = "https://github.com/Anupal/quic-iot-gw"
Issues = "https://github.com/Anupal/quic-iot-gw/issues"