forked from randomsync/robotframework-mqttlibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (26 loc) · 923 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (26 loc) · 923 Bytes
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
[project]
name = "robotframework-mqtt5library"
version = "0.8.2"
authors = [
{ name="Gaurav Gupta", email="gaurav@randomsync.net" },
{ name="Emil Söderberg", email="emil@stutt.se" },
]
description = "MQTT5Library is a Robot Framework library that provides keywords for testing on MQTTv5 brokers."
readme = "README.md"
requires-python = ">=3.7"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Testing",
"Development Status :: 3 - Alpha",
]
keywords = ["robotframework", "testing", "testautomation", "mqtt"]
dependencies = [
"paho-mqtt",
]
[project.urls]
"Homepage" = "https://github.com/kemilsoderberg/robotframework-mqtt5library"
[build-system]
requires = ["setuptools>=61.0", "robotframework>=6.0.2", "paho-mqtt>=1.6.1"]
build-backend = "setuptools.build_meta"