-
-
Notifications
You must be signed in to change notification settings - Fork 79
/
pyproject.toml
47 lines (43 loc) · 1.42 KB
/
pyproject.toml
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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "wa-crypt-tools"
keywords = ["whatsapp", "crypt12", "crypt14", "crypt15"]
version = "0.1.0"
authors = [
{name = "Davide Palma", email = "[email protected]"},
]
description = "Manages WhatsApp .crypt12, .crypt14 and .crypt15 files, given the key."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"javaobj-py3 >= 0.4.4",
"pycryptodomex >= 3.20.0",
"protobuf >= 5.27.3,< 5.29.0"
]
classifiers = [
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
[project.scripts]
wacreatekey = "wa_crypt_tools.wacreatekey:main"
wadecrypt = "wa_crypt_tools.wadecrypt:main"
waencrypt = "wa_crypt_tools.waencrypt:main"
waguess = "wa_crypt_tools.waguess:main"
wainfo = "wa_crypt_tools.wainfo:main"
[project.optional-dependencies]
proto = [
"protoletariat"
]