KeyDive/pyproject.toml

60 lines
1.8 KiB
TOML
Raw Normal View History

2024-07-06 18:01:47 +00:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "keydive"
2024-11-03 13:03:39 +00:00
version = "2.1.3"
2024-07-06 18:01:47 +00:00
description = "Extract Widevine L3 keys from Android devices effortlessly, spanning multiple Android versions for DRM research and education."
license = "MIT"
authors = ["hyugogirubato <65763543+hyugogirubato@users.noreply.github.com>"]
readme = "README.md"
repository = "https://github.com/hyugogirubato/KeyDive"
keywords = ["python", "drm", "widevine", "google"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Video",
"Topic :: Security :: Cryptography",
"Topic :: Software Development :: Libraries :: Python Modules"
]
include = [
{ path = "CHANGELOG.md", format = "sdist" },
{ path = "README.md", format = "sdist" },
{ path = "LICENSE", format = "sdist" }
]
[tool.poetry.urls]
"Issues" = "https://github.com/hyugogirubato/KeyDive/issues"
"Packages" = "https://github.com/hyugogirubato/KeyDive/blob/main/docs/PACKAGE.md"
"Functions" = "https://github.com/hyugogirubato/KeyDive/blob/main/docs/FUNCTIONS.md"
"Changelog" = "https://github.com/hyugogirubato/KeyDive/blob/main/CHANGELOG.md"
[tool.poetry.dependencies]
python = "^3.8"
coloredlogs = "^15.0.1"
2024-10-20 14:07:54 +00:00
frida = "^16.5.6"
2024-07-06 18:01:47 +00:00
pathlib = "^1.0.1"
2024-10-20 14:07:54 +00:00
pycryptodomex = "^3.21.0"
2024-07-06 18:01:47 +00:00
pywidevine = "^1.8.0"
2024-09-25 13:35:04 +00:00
pathvalidate = "^3.2.1"
2024-10-26 13:19:36 +00:00
requests = "^2.32.3"
2024-10-27 08:39:06 +00:00
xmltodict = "^0.14.2"
2024-10-20 14:07:54 +00:00
Flask = { version = "^3.0.3", optional = true }
2024-07-06 18:01:47 +00:00
[tool.poetry.scripts]
keydive = "keydive.__main__:main"
[[tool.poetry.source]]
name = "localpypi"
url = "https://pypi.org/simple/"
priority = "primary"
[certificates]
localpypi = { cert = false }