changeset 391:cb3e75c7c999

install: add pyproject.toml
author Goffi <goffi@goffi.org>
date Fri, 12 Jan 2024 23:22:17 +0100
parents 38635d393089
children 10162030d2f0
files pyproject.toml
diffstat 1 files changed, 34 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /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",
+]