set required python version from >2.6 to >=2.7 (to be more explicit)

This commit is contained in:
Felix Lohmeier 2019-08-16 00:23:26 +02:00
parent be439c986b
commit 7d66993982
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ setup(name='openrefine-client',
url='https://github.com/opencultureconsulting/openrefine-client',
packages=find_packages(exclude=['tests']),
install_requires=['urllib2_file'],
python_requires='>2.6, !=3.*',
python_requires='>=2.7, !=3.*',
entry_points={
'console_scripts': [ 'openrefine-client = google.refine.__main__:main' ]
},