annotate pyproject.toml @ 395:5072e4a4e261 default tip

call: update template to handle remote control mode. rel 436
author Goffi <goffi@goffi.org>
date Sat, 11 May 2024 13:55:03 +0200
parents 10162030d2f0
children
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]
392
10162030d2f0 install: fix `pyproject.toml` and version
Goffi <goffi@goffi.org>
parents: 391
diff changeset
2 requires = ["hatchling"]
391
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
3 build-backend = "hatchling.build"
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
4
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
5 [project]
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
6 name = "libervia-templates"
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
7 dynamic = ["version"]
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
8 description = "Templates for Libervia XMPP client"
392
10162030d2f0 install: fix `pyproject.toml` and version
Goffi <goffi@goffi.org>
parents: 391
diff changeset
9 license = "AGPL-3.0-or-later"
391
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
10 requires-python = ">=3.10"
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
11 authors = [
392
10162030d2f0 install: fix `pyproject.toml` and version
Goffi <goffi@goffi.org>
parents: 391
diff changeset
12 { name = "Libervia Dev Team", email = "contact@goffi.org" },
391
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
13 ]
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
14 classifiers = [
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
15 "Development Status :: 5 - Production/Stable",
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
16 "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
392
10162030d2f0 install: fix `pyproject.toml` and version
Goffi <goffi@goffi.org>
parents: 391
diff changeset
17 "Topic :: Communications :: Chat",
10162030d2f0 install: fix `pyproject.toml` and version
Goffi <goffi@goffi.org>
parents: 391
diff changeset
18 "Topic :: Internet :: XMPP"
391
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
19 ]
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
20 dependencies = []
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
21
392
10162030d2f0 install: fix `pyproject.toml` and version
Goffi <goffi@goffi.org>
parents: 391
diff changeset
22 keywords = [
10162030d2f0 install: fix `pyproject.toml` and version
Goffi <goffi@goffi.org>
parents: 391
diff changeset
23 "XMPP"
10162030d2f0 install: fix `pyproject.toml` and version
Goffi <goffi@goffi.org>
parents: 391
diff changeset
24 ]
10162030d2f0 install: fix `pyproject.toml` and version
Goffi <goffi@goffi.org>
parents: 391
diff changeset
25
391
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
26 [project.urls]
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
27 Homepage = "https://libervia.org"
392
10162030d2f0 install: fix `pyproject.toml` and version
Goffi <goffi@goffi.org>
parents: 391
diff changeset
28 Documentation = "https://libervia.org/documentation"
10162030d2f0 install: fix `pyproject.toml` and version
Goffi <goffi@goffi.org>
parents: 391
diff changeset
29 Repository = "https://repos.goffi.org/libervia-backend/"
10162030d2f0 install: fix `pyproject.toml` and version
Goffi <goffi@goffi.org>
parents: 391
diff changeset
30 Roadmap = "https://libervia.org/roadmap"
10162030d2f0 install: fix `pyproject.toml` and version
Goffi <goffi@goffi.org>
parents: 391
diff changeset
31
10162030d2f0 install: fix `pyproject.toml` and version
Goffi <goffi@goffi.org>
parents: 391
diff changeset
32 [tool.hatch.build.targets.wheel]
10162030d2f0 install: fix `pyproject.toml` and version
Goffi <goffi@goffi.org>
parents: 391
diff changeset
33 packages = ["sat_templates"]
391
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
34
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
35 [tool.hatch.version]
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
36 path = "sat_templates/__init__.py"
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
37
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
38 [tool.hatch.build.targets.sdist]
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
39 include = [
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
40 "/sat_templates",
cb3e75c7c999 install: add pyproject.toml
Goffi <goffi@goffi.org>
parents:
diff changeset
41 ]