-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
91 lines (82 loc) · 2.46 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "pslipstream"
version = "1.0.0"
description = "The most informative Home-media backup solution."
license = "GPLv3"
authors = ["rlaphoenix <rlaphoenix@pm.me>"]
readme = "README.md"
repository = "https://github.com/rlaphoenix/slipstream"
keywords = ["python", "dvd", "backup"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: End Users/Desktop",
"Natural Language :: English",
"Operating System :: Microsoft :: Windows",
"Operating System :: Microsoft :: Windows :: Windows 7",
"Operating System :: Microsoft :: Windows :: Windows 8",
"Operating System :: Microsoft :: Windows :: Windows 8.1",
"Operating System :: Microsoft :: Windows :: Windows 10",
"Operating System :: Microsoft :: Windows :: Windows 11",
"Operating System :: Microsoft :: Windows :: Windows Server 2008",
"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" },
"static/*",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/rlaphoenix/slipstream/issues"
"Forums" = "https://github.com/rlaphoenix/slipstream/discussions"
"Changelog" = "https://github.com/rlaphoenix/slipstream/blob/master/CHANGELOG.md"
[tool.poetry.dependencies]
python = ">=3.8,<3.13"
pycdlib = "^1.14.0"
pydvdcss = "^1.4.0"
pydvdid-m = "^1.1.1"
appdirs = "^1.4.4"
tqdm = "^4.66.4"
PySide6-Essentials = "^6.6.3.1"
click = "^8.1.7"
coloredlogs = "^15.0.1"
jsonpickle = "^3.2.2"
pywin32 = {version = "306", platform = "win32"}
WMI = {version = "^1.5.1", platform = "win32"}
pyinstaller = {version = "^6.9.0", optional = true}
[tool.poetry.dev-dependencies]
ruff = "~0.5.1"
isort = "^5.13.2"
mypy = "^1.10.1"
pre-commit = "^3.5.0"
types-python-dateutil = "^2.9.0.20240316"
[tool.poetry.extras]
pyinstaller = ["pyinstaller"]
[tool.poetry.scripts]
slipstream = 'pslipstream.main:main'
[tool.ruff]
exclude = [
".venv",
"build",
"dist",
"*_pb2.py",
"*.pyi",
]
ignore = []
line-length = 120
select = ["E", "F", "W"]
[tool.isort]
line_length = 120
[tool.mypy]
check_untyped_defs = true
disallow_incomplete_defs = true
disallow_untyped_defs = true
follow_imports = 'silent'
ignore_missing_imports = true
no_implicit_optional = true