-
Notifications
You must be signed in to change notification settings - Fork 721
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Aarni Koskela <[email protected]>
- Loading branch information
Showing
7 changed files
with
76 additions
and
72 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
[build-system] | ||
requires = ["hatchling"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
name = "paho-mqtt" | ||
dynamic = ["version"] | ||
description = "MQTT version 5.0/3.1.1 client class" | ||
readme = "README.rst" | ||
# see https://lists.spdx.org/g/Spdx-legal/topic/request_for_adding_eclipse/67981884 | ||
# for why Eclipse Distribution License v1.0 is listed as BSD-3-Clause | ||
license = "EPL-2.0 OR BSD-3-Clause" | ||
requires-python = ">=3.7" | ||
authors = [ | ||
{ name = "Roger Light", email = "[email protected]" }, | ||
] | ||
keywords = [ | ||
"paho", | ||
] | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved", | ||
"Natural Language :: English", | ||
"Operating System :: MacOS :: MacOS X", | ||
"Operating System :: Microsoft :: Windows", | ||
"Operating System :: POSIX", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Topic :: Communications", | ||
"Topic :: Internet", | ||
] | ||
dependencies = [] | ||
|
||
[project.optional-dependencies] | ||
proxy = [ | ||
"PySocks", | ||
] | ||
|
||
[project.urls] | ||
Homepage = "http://eclipse.org/paho" | ||
|
||
[tool.hatch.version] | ||
path = "src/paho/mqtt/__init__.py" | ||
|
||
[tool.hatch.build.targets.sdist] | ||
include = [ | ||
"/src", | ||
"/examples", | ||
"about.html", | ||
"CONTRIBUTING.md", | ||
"edl-v10", | ||
"epl-v10", | ||
"LICENSE.txt", | ||
"notice.html", | ||
"README.rst", | ||
] | ||
|
||
[tool.hatch.build.targets.wheel] | ||
include = [ | ||
"/src", | ||
] | ||
|
||
[tool.pytest.ini_options] | ||
addopts = ["-r", "xs"] | ||
testpaths = "tests src" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters