Specifying python versions supported in setup.py (#382)

* Specifying python versions supported in setup.py

* Fixing py3
This commit is contained in:
Maxime Beauchemin
2016-04-20 12:27:17 -07:00
parent d96b634ded
commit 01a8c96820
2 changed files with 7 additions and 1 deletions

View File

@@ -43,4 +43,9 @@ setup(
url='https://github.com/airbnb/caravel',
download_url=(
'https://github.com/airbnb/caravel/tarball/' + version.VERSION_STRING),
classifiers=[
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
],
)