-
-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathpyproject.toml
More file actions
64 lines (52 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
64 lines (52 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "zapzap"
dynamic = ["version"]
description = "zapzap whatsapp client web app"
readme = "README.md"
requires-python = ">=3.8"
license = { text = "GPL-3.0-or-later" }
authors = [
{ name = "Rafael Tosta", email = "rafa.ecomp@gmail.com" }
]
keywords = ["zapzap", "whatsapp", "client", "web", "app"]
classifiers = [
"Environment :: X11 Applications :: Qt",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Topic :: Office/Business",
"Programming Language :: Python :: 3 :: Only"
]
dependencies = [
"PyQt6",
"PyQt6-WebEngine"
]
[project.optional-dependencies]
dbus = ["dbus-python"]
[project.urls]
Homepage = "https://rtosta.com/zapzap"
[project.scripts]
zapzap = "zapzap.__main__:main"
[tool.setuptools]
packages = [
"zapzap",
"zapzap.config",
"zapzap.controllers",
"zapzap.models",
"zapzap.resources",
"zapzap.services",
"zapzap.views",
"zapzap.debug",
"zapzap.notifications",
"zapzap.webengine"
]
[tool.setuptools.package-data]
zapzap = [
"po/*/LC_MESSAGES/*.mo",
"js/*",
"extensions/*"
]
[tool.setuptools.dynamic]
version = { attr = "zapzap.__version__" }