devine/pyproject.toml

92 lines
2.3 KiB
TOML
Raw Normal View History

2023-02-06 02:33:09 +00:00
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
2023-02-06 02:33:09 +00:00
[tool.poetry]
name = "devine"
version = "2.2.0"
description = "Open-Source Movie, TV, and Music Downloading Solution."
license = "GPL-3.0-only"
authors = ["rlaphoenix <rlaphoenix@pm.me>"]
readme = "README.md"
homepage = "https://github.com/devine-dl/devine"
repository = "https://github.com/devine-dl/devine"
keywords = ["python", "downloader", "drm", "widevine"]
2023-02-06 02:33:09 +00:00
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Multimedia :: Video",
"Topic :: Security :: Cryptography",
2023-02-06 02:33:09 +00:00
]
include = [
{ path = "CHANGELOG.md", format = "sdist" },
{ path = "README.md", format = "sdist" },
{ path = "LICENSE", format = "sdist" },
]
[tool.poetry.urls]
"Issues" = "https://github.com/devine-dl/devine/issues"
"Discussions" = "https://github.com/devine-dl/devine/discussions"
"Changelog" = "https://github.com/devine-dl/devine/blob/master/CHANGELOG.md"
2023-02-06 02:33:09 +00:00
[tool.poetry.dependencies]
2023-02-22 03:43:22 +00:00
python = ">=3.9.0,<3.12"
2023-02-06 02:33:09 +00:00
appdirs = "^1.4.4"
Brotli = "^1.1.0"
click = "^8.1.7"
2023-02-06 02:33:09 +00:00
construct = "^2.8.8"
crccheck = "^1.3.0"
jsonpickle = "^3.0.2"
2023-02-06 02:33:09 +00:00
langcodes = { extras = ["data"], version = "^3.3.0" }
2023-07-07 17:20:49 +00:00
lxml = "^4.9.3"
2023-02-06 02:33:09 +00:00
pproxy = "^2.7.8"
protobuf = "4.21.6"
pycaption = "^2.1.1"
pycryptodomex = "^3.19.0"
pyjwt = "^2.8.0"
2023-02-06 02:33:09 +00:00
pymediainfo = "^6.0.1"
pymp4 = "^1.4.0"
2023-07-07 17:20:49 +00:00
pymysql = "^1.1.0"
2023-02-06 02:33:09 +00:00
pywidevine = { extras = ["serve"], version = "^1.6.0" }
PyYAML = "^6.0.1"
2023-05-27 19:15:51 +00:00
requests = { extras = ["socks"], version = "^2.31.0" }
rich = "^13.5.3"
"rlaphoenix.m3u8" = "^3.4.0"
2023-07-07 17:20:49 +00:00
"ruamel.yaml" = "^0.17.32"
2023-02-06 02:33:09 +00:00
sortedcontainers = "^2.4.0"
2023-07-07 17:20:49 +00:00
subtitle-filter = "^1.4.6"
2023-02-06 02:33:09 +00:00
Unidecode = "^1.3.6"
urllib3 = "^2.0.4"
2023-02-06 02:33:09 +00:00
[tool.poetry.dev-dependencies]
pre-commit = "^3.4.0"
mypy = "^1.5.1"
2023-02-06 02:33:09 +00:00
mypy-protobuf = "^3.3.0"
types-protobuf = "^4.24.0.1"
types-PyMySQL = "^1.1.0.1"
types-requests = "^2.31.0.2"
2023-02-06 02:33:09 +00:00
isort = "^5.12.0"
ruff = "^0.0.292"
2023-02-06 02:33:09 +00:00
[tool.poetry.scripts]
devine = "devine.core.__main__:main"
[tool.ruff]
force-exclude = true
line-length = 120
select = ["E4", "E7", "E9", "F", "W"]
2023-02-06 02:33:09 +00:00
[tool.isort]
line_length = 118
2023-02-06 02:33:09 +00:00
[tool.mypy]
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
follow_imports = "silent"
2023-02-06 02:33:09 +00:00
ignore_missing_imports = true
no_implicit_optional = true