Initial commit

This commit is contained in:
Roman Krček
2024-07-22 14:16:53 +02:00
commit c736ee6193
12 changed files with 342 additions and 0 deletions

15
tox.ini Normal file
View File

@@ -0,0 +1,15 @@
[tox]
envlist = py311, flake8, bandit
[testenv]
basepython = python3.11
deps = -r {toxinidir}/test-requirements.txt
[testenv:flake8]
commands = flake8 telegram_downloader_bot/
[testenv:bandit]
commands = bandit -r telegram_downloader_bot/
[testenv:codespell]
commands = codespell telegram_downloader_bot/