From 43954a3eee56d7bf07e911c70fa7f5a893b5c0bd Mon Sep 17 00:00:00 2001 From: BuildTools Date: Tue, 12 Nov 2024 14:11:31 +0100 Subject: [PATCH] Version and __init__ update --- pyplayready/__init__.py | 10 ++++++++++ pyproject.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/pyplayready/__init__.py b/pyplayready/__init__.py index f102a9c..8c55018 100644 --- a/pyplayready/__init__.py +++ b/pyplayready/__init__.py @@ -1 +1,11 @@ +from .bcert import * +from .cdm import * +from .device import * +from .ecc_key import * +from .elgamal import * +from .key import * +from .pssh import * +from .xml_key import * +from .xmrlicense import * + __version__ = "0.0.1" diff --git a/pyproject.toml b/pyproject.toml index 68b670d..5a153fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "pyplayready" -version = "0.1.6" +version = "0.0.1" description = "pyplayready CDM (Content Decryption Module) implementation in Python." license = "GPL-3.0-only" authors = ["DevLARLEY"]