# HG changeset patch # User Goffi # Date 1705098137 -3600 # Node ID cb3e75c7c99965d66a1f1f3055f2bfd37186e2a7 # Parent 38635d393089e0fa2b72e690961cb6c9843ee672 install: add pyproject.toml diff -r 38635d393089 -r cb3e75c7c999 pyproject.toml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pyproject.toml Fri Jan 12 23:22:17 2024 +0100 @@ -0,0 +1,34 @@ +[build-system] +requires = ["hatchling", +"hatch-vcs"] +build-backend = "hatchling.build" + +[project] +name = "libervia-templates" +dynamic = ["version"] +description = "Templates for Libervia XMPP client" +license = "" +requires-python = ">=3.10" +authors = [ + { name = "Association « Salut à Toi »", email = "contact@salut-a-toi.org" }, +] +classifiers = [ + "Development Status :: 5 - Production/Stable", + "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", + "Programming Language :: Python :: 3 :: Only", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", +] +dependencies = [] + +[project.urls] +Homepage = "https://libervia.org" + +[tool.hatch.version] +path = "sat_templates/__init__.py" + +[tool.hatch.build.targets.sdist] +include = [ + "/sat_templates", +]