view pyproject.toml @ 391:cb3e75c7c999

install: add pyproject.toml
author Goffi <goffi@goffi.org>
date Fri, 12 Jan 2024 23:22:17 +0100
parents
children 10162030d2f0
line wrap: on
line source

[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",
]