-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
64 lines (57 loc) · 1.93 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pydvdcss"
version = "1.4.0"
description = "Python wrapper for VideoLAN's libdvdcss."
license = "GPLv3"
authors = ["rlaphoenix <rlaphoenix@pm.me>"]
readme = "README.md"
repository = "https://github.com/rlaphoenix/pydvdcss"
documentation = "https://pydvdcss.readthedocs.io"
keywords = ["python", "library", "dvd", "videolan", "libdvdcss"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
"Topic :: Multimedia",
"Topic :: Multimedia :: Video",
"Topic :: Multimedia :: Video :: Conversion",
"Topic :: Security :: Cryptography",
]
include = [
{ path = "CHANGELOG.md", format = "sdist" },
{ path = "README.md", format = "sdist" },
{ path = "LICENSE", format = "sdist" },
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/rlaphoenix/pydvdcss/issues"
"Forums" = "https://github.com/rlaphoenix/pydvdcss/discussions"
"Changelog" = "https://github.com/rlaphoenix/pydvdcss/blob/master/CHANGELOG.md"
[tool.poetry.dependencies]
python = "^3.9"
Sphinx = {version = "^7.4.6", optional = true}
dunamai = {version = "^1.21.2", optional = true}
furo = {version = "^2024.7.18", optional = true}
myst-parser = {version = "^3.0.1", optional = true}
[tool.poetry.dev-dependencies]
ruff = "~0.5.3"
mypy = "^1.10.1"
pre-commit = "^3.7.1"
[tool.poetry.extras]
docs = ["Sphinx", "dunamai", "furo", "myst-parser"]
[tool.ruff.lint]
extend-select = ["B", "C4", "E", "FA", "FURB", "I", "ICN", "ISC", "N", "PERF", "PGH", "PIE", "RUF", "SIM", "UP", "W"]
[tool.mypy]
check_untyped_defs = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
follow_imports = "silent"
ignore_missing_imports = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_unused_ignores = true