http-to-xmpp/pyproject.toml

36 lines
694 B
TOML

[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "http-to-xmpp"
description = "Basic one way gate between HTTP and XMPP."
readme = "README.md"
license = {text = "MIT License"}
authors = [
{name = "Julien Palard", email = "julien@palard.fr"},
]
requires-python = ">= 3.7"
dependencies = [
"aiohttp",
"aioxmpp",
]
dynamic = ["version"]
[project.urls]
homepage = "https://git.afpy.org/mdk/http-to-xmpp"
[project.scripts]
http-to-xmpp = "http_to_xmpp:main"
[tool.setuptools]
py-modules = [
"http_to_xmpp",
]
include-package-data = false
[tool.setuptools.dynamic.version]
attr = "http_to_xmpp.__version__"
[tool.black]