Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/python-nbxmpp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Apitzsch <git@apitzsch.eu>2022-04-07 23:32:35 +0300
committerAndré Apitzsch <git@apitzsch.eu>2022-04-07 23:43:11 +0300
commitc62eeb05d1f60e561316564992c496c05250a5fa (patch)
tree6fcc712a607cb54f0ccdfc382a04110e23ba708a /pyproject.toml
parent2c74f928f2ff2573b40c7fadc3cc52eaf936e370 (diff)
Implement PEP 518 and opt into PEP 517 builds
The support of setup.py is deprecated by setuptools and will be removed in the future. For a summary about setup.py, PEP 517 [1] and 518 [2], see [3]. To install nbxmpp (still) run pip install . To package nbxmpp use pip install build python -m build [1]: https://peps.python.org/pep-0517/ [2]: https://peps.python.org/pep-0518/ [3]: https://lists.archlinux.org/pipermail/arch-dev-public/2022-February/030737.html
Diffstat (limited to 'pyproject.toml')
-rw-r--r--pyproject.toml6
1 files changed, 6 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
new file mode 100644
index 0000000..0d477c4
--- /dev/null
+++ b/pyproject.toml
@@ -0,0 +1,6 @@
+[build-system]
+requires = [
+ "setuptools >= 43.0.0",
+ "wheel",
+]
+build-backend = "setuptools.build_meta"