comparison pyproject.toml @ 392:10162030d2f0

install: fix `pyproject.toml` and version
author Goffi <goffi@goffi.org>
date Fri, 12 Jan 2024 23:31:17 +0100
parents cb3e75c7c999
children
comparison
equal deleted inserted replaced
391:cb3e75c7c999 392:10162030d2f0
1 [build-system] 1 [build-system]
2 requires = ["hatchling", 2 requires = ["hatchling"]
3 "hatch-vcs"]
4 build-backend = "hatchling.build" 3 build-backend = "hatchling.build"
5 4
6 [project] 5 [project]
7 name = "libervia-templates" 6 name = "libervia-templates"
8 dynamic = ["version"] 7 dynamic = ["version"]
9 description = "Templates for Libervia XMPP client" 8 description = "Templates for Libervia XMPP client"
10 license = "" 9 license = "AGPL-3.0-or-later"
11 requires-python = ">=3.10" 10 requires-python = ">=3.10"
12 authors = [ 11 authors = [
13 { name = "Association « Salut à Toi »", email = "contact@salut-a-toi.org" }, 12 { name = "Libervia Dev Team", email = "contact@goffi.org" },
14 ] 13 ]
15 classifiers = [ 14 classifiers = [
16 "Development Status :: 5 - Production/Stable", 15 "Development Status :: 5 - Production/Stable",
17 "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", 16 "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
18 "Programming Language :: Python :: 3 :: Only", 17 "Topic :: Communications :: Chat",
19 "Programming Language :: Python :: 3.7", 18 "Topic :: Internet :: XMPP"
20 "Programming Language :: Python :: 3.8",
21 "Programming Language :: Python :: 3.9",
22 ] 19 ]
23 dependencies = [] 20 dependencies = []
24 21
22 keywords = [
23 "XMPP"
24 ]
25
25 [project.urls] 26 [project.urls]
26 Homepage = "https://libervia.org" 27 Homepage = "https://libervia.org"
28 Documentation = "https://libervia.org/documentation"
29 Repository = "https://repos.goffi.org/libervia-backend/"
30 Roadmap = "https://libervia.org/roadmap"
31
32 [tool.hatch.build.targets.wheel]
33 packages = ["sat_templates"]
27 34
28 [tool.hatch.version] 35 [tool.hatch.version]
29 path = "sat_templates/__init__.py" 36 path = "sat_templates/__init__.py"
30 37
31 [tool.hatch.build.targets.sdist] 38 [tool.hatch.build.targets.sdist]