Indicate Python 3 support in metadata (#176)

This commit is contained in:
David D Lowe 2018-05-30 19:12:25 +01:00 committed by Ryan Castner
parent 3a82338e59
commit bcf1dbf0bf

View file

@ -13,5 +13,14 @@ setup(
'django-jsonfield>=1.0.0',
'python-dateutil==2.6.0'
],
zip_safe=False
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: MIT License',
],
)