-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (49 loc) · 1.35 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
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "tcd"
version = "0.1dev"
description = "TCD is tool for decrypted Telegram Desktop media cache"
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Environment :: Console",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Topic :: Security",
"Topic :: Utilities",
]
keywords = ["decrypt", "crypto", "telegram", "tool"]
authors = ["Radik Islamov <[email protected]>"]
license = "MIT"
readme = "README.rst"
[tool.poetry.scripts]
tcd = "tcd.app.run:main"
[tool.poetry.dependencies]
python = "^3.12"
aiofiles = "^24.1.0"
pyqt5 = "5.15.9"
tgcrypto = "^1.2.5"
[tool.poetry.urls]
homepage = "https://github.com/ViZiD/tcd"
repository = "https://github.com/ViZiD/tcd"
[tool.poetry.group.dev.dependencies]
ruff = "<=0.5.1"
mypy = "^1.11.0"
types-aiofiles = "^24.1.0.20240626"
types-tgcrypto = "^1.2.0.20240802"
[tool.ruff.format]
indent-style = "space"
[tool.ruff.lint.isort]
known-third-party = ["pyqt5", "aiofiles", "tgcrypto"]
[tool.ruff.lint.pydocstyle]
convention = "google"
[tool.mypy]
python_version = "3.12"
warn_return_any = true
warn_unused_configs = true
check_untyped_defs = true
ignore_missing_imports = true
pretty = true