mirror of
https://git.gay/ready-dl/pyplayready.git
synced 2025-07-20 22:56:44 +00:00
Initial Commit
This commit is contained in:
parent
de14f87c5c
commit
dc9fc1e217
14 changed files with 1636 additions and 0 deletions
41
pyproject.toml
Normal file
41
pyproject.toml
Normal file
|
@ -0,0 +1,41 @@
|
|||
[build-system]
|
||||
requires = ["poetry-core>=1.0.0"]
|
||||
build-backend = "poetry.core.masonry.api"
|
||||
|
||||
[tool.poetry]
|
||||
name = "pyplayready"
|
||||
version = "0.1.6"
|
||||
description = "pyplayready CDM (Content Decryption Module) implementation in Python."
|
||||
license = "GPL-3.0-only"
|
||||
authors = ["DevLARLEY"]
|
||||
readme = "README.md"
|
||||
repository = "https://github.com/ready-dl/pyplayready"
|
||||
keywords = ["python", "drm", "playready", "microsoft"]
|
||||
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 = "README.md", format = "sdist" },
|
||||
{ path = "LICENSE", format = "sdist" },
|
||||
]
|
||||
|
||||
[tool.poetry.urls]
|
||||
"Issues" = "https://github.com/ready-dl/pyplayready/issues"
|
||||
|
||||
[tool.poetry.dependencies]
|
||||
python = ">=3.8,<4.0"
|
||||
requests = "^2.32.3"
|
||||
pycryptodome = "^3.21.0"
|
||||
construct = "^2.10.70"
|
||||
ECPy = "^1.2.5"
|
||||
click = "^8.1.7"
|
||||
|
||||
[tool.poetry.scripts]
|
||||
pyplayready = "pyplayready.main:main"
|
Loading…
Add table
Add a link
Reference in a new issue