-
Notifications
You must be signed in to change notification settings - Fork 728
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 <akx@iki.fi>
- Loading branch information
Showing
7 changed files
with
77 additions
and
81 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,71 @@ | ||
[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 = "roger@atchoo.org" }, | ||
] | ||
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] | ||
sources = ["src"] | ||
include = [ | ||
"src/paho", | ||
"/examples", | ||
"about.html", | ||
"CONTRIBUTING.md", | ||
"edl-v10", | ||
"epl-v10", | ||
"LICENSE.txt", | ||
"notice.html", | ||
"README.rst", | ||
] | ||
|
||
[tool.hatch.build.targets.wheel] | ||
packages = [ | ||
"src/paho", | ||
] | ||
|
||
[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