mirror of
				https://github.com/devine-dl/pywidevine.git
				synced 2025-11-04 03:44:50 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			88 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			TOML
		
	
	
	
	
	
[build-system]
 | 
						|
requires = ["poetry-core>=1.0.0"]
 | 
						|
build-backend = "poetry.core.masonry.api"
 | 
						|
 | 
						|
[tool.poetry]
 | 
						|
name = "pywidevine"
 | 
						|
version = "1.8.0"
 | 
						|
description = "Widevine CDM (Content Decryption Module) implementation in Python."
 | 
						|
license = "GPL-3.0-only"
 | 
						|
authors = ["rlaphoenix <rlaphoenix@pm.me>"]
 | 
						|
readme = "README.md"
 | 
						|
repository = "https://github.com/devine-dl/pywidevine"
 | 
						|
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/devine-dl/pywidevine/issues"
 | 
						|
"Discussions" = "https://github.com/devine-dl/pywidevine/discussions"
 | 
						|
"Changelog" = "https://github.com/devine-dl/pywidevine/blob/master/CHANGELOG.md"
 | 
						|
 | 
						|
[tool.poetry.dependencies]
 | 
						|
python = ">=3.9,<4.0"
 | 
						|
protobuf = "^6.33.0"
 | 
						|
pymp4 = "^1.4.0"
 | 
						|
pycryptodome = "^3.19.0"
 | 
						|
click = "^8.1.7"
 | 
						|
requests = "^2.31.0"
 | 
						|
Unidecode = "^1.3.7"
 | 
						|
PyYAML = "^6.0.1"
 | 
						|
aiohttp = {version = "^3.9.1", optional = true}
 | 
						|
 | 
						|
[tool.poetry.group.dev.dependencies]
 | 
						|
pre-commit = "^3.5.0"
 | 
						|
mypy = "^1.7.1"
 | 
						|
mypy-protobuf = "^3.5.0"
 | 
						|
types-protobuf = "^4.24.0.4"
 | 
						|
types-requests = "^2.31.0.10"
 | 
						|
types-PyYAML = "^6.0.12.12"
 | 
						|
isort = "^5.12.0"
 | 
						|
ruff = "~0.1.7"
 | 
						|
 | 
						|
[tool.poetry.extras]
 | 
						|
serve = ["aiohttp"]
 | 
						|
 | 
						|
[tool.poetry.scripts]
 | 
						|
pywidevine = "pywidevine.main:main"
 | 
						|
 | 
						|
[tool.ruff]
 | 
						|
extend-exclude = [
 | 
						|
  "*_pb2.py",
 | 
						|
  "*.pyi",
 | 
						|
]
 | 
						|
force-exclude = true
 | 
						|
line-length = 120
 | 
						|
select = ["E4", "E7", "E9", "F", "W"]
 | 
						|
 | 
						|
[tool.ruff.extend-per-file-ignores]
 | 
						|
"pywidevine/__init__.py" = ["F403"]
 | 
						|
 | 
						|
[tool.isort]
 | 
						|
line_length = 118
 | 
						|
extend_skip_glob = ["*_pb2.py", "*.pyi"]
 | 
						|
 | 
						|
[tool.mypy]
 | 
						|
check_untyped_defs = true
 | 
						|
disallow_incomplete_defs = true
 | 
						|
disallow_untyped_defs = true
 | 
						|
exclude = [
 | 
						|
  '_pb2.pyi?$'  # generated protobuffer files
 | 
						|
]
 | 
						|
follow_imports = "silent"
 | 
						|
ignore_missing_imports = true
 | 
						|
no_implicit_optional = true
 |