From 2fa27898ff169acdf6ffcfb3201b15d8c27499b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Cuza?= <220180+rcuza@users.noreply.github.com> Date: Tue, 25 Feb 2020 12:18:20 -0500 Subject: [PATCH] add setuptools to install_requires This package depends on working `pkg_resources` which is provided by `setuptools`. Version 3 of `setuptools` is the first version to support Python 3.4. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 90ab546..8739cae 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ 'test/pki/ca/*.0' ], }, - install_requires=['PyOpenSSL', 'pyasn1>=0.1.1'], + install_requires=['PyOpenSSL', 'pyasn1>=0.1.1', 'setuptools>=3.5'], python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', classifiers=[ 'Development Status :: 5 - Production/Stable',