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 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
[project]
name = "slixmpp"
dynamic = ["version"]
description = "Slixmpp is an elegant Python library for XMPP (aka Jabber)."
readme = "README.rst"
license = "MIT"
authors = [
{ name = "Florent Le Coz", email = "louiz@louiz.org" },
{ name = "Mathieu Pasquet (mathieui)", email = "mathieui@mathieui.net" },
{ name = "Emmanuel Gil Peyrot (Link Mauve)", email = "linkmauve@linkmauve.fr" },
{ name = "Maxime “pep” Buquet", email = "pep@bouah.org" },
]
maintainers = [
{ name = "Mathieu Pasquet (mathieui)", email = "mathieui@mathieui.net" },
{ name = "Emmanuel Gil Peyrot (Link Mauve)", email = "linkmauve@linkmauve.fr" },
{ name = "Maxime “pep” Buquet", email = "pep@bouah.org" },
]
requires-python = ">=3.11"
dependencies = [
"aiodns>=3.2.0",
"pyasn1>=0.6.1",
"pyasn1-modules>=0.4.1",
]
classifiers = [
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3.14',
'Topic :: Internet :: XMPP',
'Topic :: Software Development :: Libraries :: Python Modules',
]
[project.optional-dependencies]
xep-0363 = ["aiohttp"]
xep-0444-compliance = ["emoji"]
xep-0454 = ["cryptography"]
safer-xml-parsing = ["defusedxml"]
[tool.uv]
cache-keys = [{file = "pyproject.toml"}]
[build-system]
requires = ["setuptools", "setuptools-scm>=8"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["slixmpp"]
[tool.setuptools_scm]
[dependency-groups]
dev = [
"mypy>=1.14.1",
"typos>=1.39.2",
]
|