diff options
author | shirt-dev <2660574+shirt-dev@users.noreply.github.com> | 2021-02-11 06:46:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-11 17:16:02 +0530 |
commit | 5d25607a3a9fb1c1e0f56b40cffc825847e1cd6d (patch) | |
tree | b7f705e9c5c500414d9111871a43b98ebdde6d70 /setup.py | |
parent | a96c6d154a651d4387bc7edc5bde0546b29b01da (diff) | |
download | hypervideo-pre-5d25607a3a9fb1c1e0f56b40cffc825847e1cd6d.tar.lz hypervideo-pre-5d25607a3a9fb1c1e0f56b40cffc825847e1cd6d.tar.xz hypervideo-pre-5d25607a3a9fb1c1e0f56b40cffc825847e1cd6d.zip |
#75 Change optional dependency from `Crypto` to `pycryptodome` (Closes #74)
Authored-by: shirtjs <2660574+shirtjs@users.noreply.github.com> (shirt-dev)
pycryptodome is an in-place replacement for Crypto and is more actively developed
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -20,7 +20,7 @@ LONG_DESCRIPTION = '\n\n'.join(( '**PS**: Many links in this document will not work since this is a copy of the README.md from Github', open("README.md", "r", encoding="utf-8").read())) -REQUIREMENTS = ['mutagen', 'Crypto'] +REQUIREMENTS = ['mutagen', 'pycryptodome'] if len(sys.argv) >= 2 and sys.argv[1] == 'py2exe': |