annotate pyproject.toml @ 0:9754c1d6f4f4 draft default tip

Libervia Desktop initial commit
author Goffi <goffi@goffi.org>
date Fri, 12 Jul 2024 14:13:36 +0200
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
1 [build-system]
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
2 requires = ["hatchling"]
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
3 build-backend = "hatchling.build"
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
4
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
5 [project]
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
6 name = "libervia-desktop"
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
7 dynamic = ["version"]
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
8 description = 'Desktop frontend (Qt version) for Libervia.'
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
9 # readme = "README.md"
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
10 license = "AGPL-3.0-or-later"
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
11 requires-python = ">=3.10"
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
12 keywords = [
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
13 "XMPP",
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
14 "desktop",
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
15 "Qt",
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
16 "chat",
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
17 "instant_messaging",
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
18 "file_sharing"
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
19 ]
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
20 authors = [
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
21 { name = "Libervia Dev Team", email = "contact@goffi.org" },
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
22 ]
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
23 classifiers = [
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
24 "Development Status :: 3 - Alpha",
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
25 "Environment :: X11 Applications",
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
26 "Environment :: X11 Applications :: Qt",
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
27 "Framework :: Twisted",
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
28 "Intended Audience :: End Users/Desktop",
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
29 "Operating System :: POSIX :: Linux",
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
30 "Topic :: Communications :: Chat",
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
31 "Topic :: Internet :: XMPP",
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
32 ]
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
33 dependencies = [
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
34 "pyqt6 ~= 6.7.0",
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
35 "qasync ~= 0.27.1"
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
36 # "libervia-backend == 0.9.*",
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
37 ]
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
38
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
39 [project.scripts]
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
40 libervia-desktop = "libervia.desktop:run"
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
41
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
42
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
43 [tool.hatch.build.targets.sdist]
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
44 include = [
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
45 "*.ui",
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
46 ]
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
47
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
48 [project.urls]
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
49 Homepage = "https://libervia.org"
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
50
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
51 [tool.hatch.build.targets.wheel]
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
52 packages = ["libervia"]
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
53
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
54 [tool.hatch.version]
9754c1d6f4f4 Libervia Desktop initial commit
Goffi <goffi@goffi.org>
parents:
diff changeset
55 path = "libervia/desktop/__init__.py"