-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (48 loc) · 1.51 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
[tool.poetry]
name = "telegram-download-daemon-ng"
version = "1.0.0-beta.7"
description = "A daemon to automate telegram download of big files."
authors = ["Luis Zurro <[email protected]>"]
readme = "README.md"
license = "GPLv3"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: Spanish",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
packages = [
{ include = "telegram_download_daemon_ng", from = "src" }
]
keywords = [
"download",
"downloads",
"telegram",
]
[tool.poetry.dependencies]
python = "^3.8"
cffi = "1.17.1"
cryptg = "0.5.0.post0"
pyaes = "1.6.1"
pyasn1 = "0.6.1"
pycparser = "2.22"
rsa = "4.9"
telethon = "1.38.1"
humanize = "4.10.0"
[build-system]
requires = ["poetry-core~=1.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
telegram_download_daemon_ng = 'telegram_download_daemon_ng.__main__:main'
telegram-download-daemon-ng = 'telegram_download_daemon_ng.__main__:main'
[project.urls]
Homepage = "https://github.com/Nyaran/telegram-download-daemon-ng"
Sponsor = "https://github.com/sponsors/Nyaran"
Tracker = "https://github.com/Nyaran/telegram-download-daemon-ng/issues"