-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #23 from Nyaran/bugfix/create-package-fixes
feat: Create package fixes
- Loading branch information
Showing
10 changed files
with
631 additions
and
408 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
# Project | ||
data | ||
dist | ||
*.session | ||
|
||
### VisualStudioCode template | ||
.vscode/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
1. Install Poetry | ||
|
||
curl -sSL https://install.python-poetry.org | python - | ||
|
||
2. Instalar dependencias | ||
poetry install | ||
|
||
3. Construir | ||
|
||
poetry build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,43 +1,48 @@ | ||
[build-system] | ||
requires = ["hatchling>=1.14.0"] | ||
build-backend = "hatchling.build" | ||
|
||
[project] | ||
[tool.poetry] | ||
name = "telegram-download-daemon-ng" | ||
version = "v1.0.0-beta.2" | ||
version = "1.0.0-beta.3" | ||
description = "A daemon to automate telegram download of big files." | ||
authors = ["Luis Zurro <[email protected]>"] | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
keywords = [ | ||
"download", | ||
"downloads", | ||
"telegram", | ||
] | ||
authors = [ | ||
{ name = "Luis Zurro", email = "[email protected]" }, | ||
] | ||
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", | ||
"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", | ||
] | ||
dependencies = [ | ||
"cffi==1.16.0", | ||
"cryptg==0.4", | ||
"pyaes==1.6.1", | ||
"pyasn1==0.5.0", | ||
"pycparser==2.21", | ||
"rsa==4.9", | ||
"Telethon==1.32.0", | ||
"humanize==4.8.0", | ||
packages = [ | ||
{ include = "telegram_download_daemon_ng", from = "src" } | ||
] | ||
keywords = [ | ||
"download", | ||
"downloads", | ||
"telegram", | ||
] | ||
|
||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
cffi = "1.16.0" | ||
cryptg = "0.4" | ||
pyaes = "1.6.1" | ||
pyasn1 = "0.5.0" | ||
pycparser = "2.21" | ||
rsa = "4.9" | ||
telethon = "1.32.0" | ||
humanize = "4.8.0" | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry.scripts] | ||
telegram-download-daemon-ng = 'telegram_download_daemon_ng:telegram_daemon_start' | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/Nyaran/telegram-download-daemon-ng" | ||
|
Oops, something went wrong.