From 375f2ca04efeccda79db36aaa6b413ebe53e0de9 Mon Sep 17 00:00:00 2001 From: Alexey Avramov Date: Sun, 14 Jan 2024 19:52:17 +0900 Subject: [PATCH] Update setup.py: bump version and add install_requires: pynacl, pycryptodomex --- setup.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 8a3e830..b56ce57 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ def readme(): NAME = 'tird' -VERSION = '0.3.0' +VERSION = '0.4.0' setup( name=NAME, @@ -41,5 +41,9 @@ def readme(): entry_points={'console_scripts': [ '{n} = {n}.{n}:main'.format(n=NAME), ]}, - python_requires='>=3.6' + python_requires='>=3.6', + install_requires=[ + 'pycryptodomex>=3.6.2', + 'pynacl>=1.2.0', + ], )