force python version >=3 on pip

pull/6/head
deadc0de6 6 years ago
parent c45c9b3b9a
commit b42024e63a

@ -14,6 +14,7 @@ except ImportError:
read_readme = lambda f: open(f, 'r').read()
VERSION = catcli.__version__
REQUIRES_PYTHON = '>=3'
setup(
name='catcli',
@ -28,6 +29,7 @@ setup(
author_email='deadc0de6@foo.bar',
license='GPLv3',
requires_python=REQUIRES_PYTHON,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 3.3',

Loading…
Cancel
Save