1
0
mirror of https://github.com/nvbn/thefuck.git synced 2025-03-14 06:38:32 +00:00

Explicitly require setuptools, thefuck/utils.py imports pkg_resources

This commit is contained in:
Miro Hrončok 2021-03-30 23:12:38 +02:00 committed by GitHub
parent 4c7479b3ad
commit ac597afe5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -33,7 +33,7 @@ elif (3, 0) < version < (3, 5):
VERSION = '3.30'
install_requires = ['psutil', 'colorama', 'six', 'decorator', 'pyte']
install_requires = ['psutil', 'colorama', 'six', 'decorator', 'pyte', 'setuptools']
extras_require = {':python_version<"3.4"': ['pathlib2'],
':python_version<"3.3"': ['backports.shutil_get_terminal_size'],
":sys_platform=='win32'": ['win_unicode_console']}