annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
391
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
1 [build-system]
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
2 requires = ["hatchling",
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
3 "hatch-vcs"]
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
4 build-backend = "hatchling.build"
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
5
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
6 [project]
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
7 name = "libervia-templates"
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
8 dynamic = ["version"]
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
9 description = "Templates for Libervia XMPP client"
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
10 license = ""
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
11 requires-python = ">=3.10"
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
12 authors = [
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
13 { name = "Association « Salut à Toi »", email = "contact@salut-a-toi.org" },
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
14 ]
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
15 classifiers = [
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
16 "Development Status :: 5 - Production/Stable",
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
17 "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
18 "Programming Language :: Python :: 3 :: Only",
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
19 "Programming Language :: Python :: 3.7",
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
20 "Programming Language :: Python :: 3.8",
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
21 "Programming Language :: Python :: 3.9",
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
22 ]
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
23 dependencies = []
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
24
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
25 [project.urls]
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
26 Homepage = "https://libervia.org"
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
27
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
28 [tool.hatch.version]
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
29 path = "sat_templates/__init__.py"
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
30
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
31 [tool.hatch.build.targets.sdist]
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
32 include = [
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
33 "/sat_templates",
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
34 ]