-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
105 lines (93 loc) · 2.5 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=65.5", "wheel"]
[project]
authors = [
{email = "vagabondHustler.github@gmail.com"},
{name = "vagabondHustler"},
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Video",
"Topic :: Utilities",
]
dependencies = [
"picologging==0.9.3",
"cloudscraper==1.2.71",
"num2words==0.5.13",
"packaging==24.1",
"pillow==10.4.0",
"pystray==0.19.5",
"requests==2.32.3",
"selectolax==0.3.21",
"toml==0.10.2",
]
description = "Subsearch"
dynamic = ["version"]
keywords = [
"subtitles",
"sub",
"srt",
"tool",
"tools",
"download",
"movies",
"shows",
"scrape",
"opensubtitles",
"subscene",
"subsearch",
"subtitles",
"yifysubtitles",
]
license = {text = "MIT license"}
name = "Subsearch"
readme = "README.md"
requires-python = ">=3.12"
[project.urls]
repository = "https://github.com/vagabondHustler/subsearch"
[project.scripts]
subsearch = "subsearch:main"
[tool.setuptools]
platforms = ["win32"]
zip-safe = false
[tool.setuptools.packages.find]
exclude = ["examples*", "subsearch.test*", "tools*"]
include = ["subsearch*"]
where = ["src"]
[tool.setuptools.dynamic]
version = {attr = "subsearch.data.__version__"}
[project.optional-dependencies]
build = [
"build==1.2.1",
"cx_Freeze==7.2.0",
"twine==5.1.1",
"psutil==6.0.0",
]
lint = ["black==24.4.2", "isort==5.13.2"]
tests = [
"pytest-cov==5.0.0",
"pytest==8.3.1",
"tox==4.16.0",
"python-dotenv==1.0.1",
]
tools = ["pyperclip==1.9.0"]
type = ["mypy==1.11.0"]
[tool.pytest.ini_options]
addopts = "--cov=src/subsearch"
filterwarnings = ['ignore::DeprecationWarning']
log_cli = true
log_cli_level = 'DEBUG'
testpaths = ["tests"]
[tool.black]
line-length = 120
[tool.isort]
profile = "black"
[tool.mypy]
check_untyped_defs = true
ignore_missing_imports = true
mypy_path = "src"
warn_no_return = false