from setuptools import setup, find_packages
CLASSIFIERS = [
- 'Programming Language :: Python',
+ 'Programming Language :: Python :: 2',
+ 'Programming Language :: Python :: 2.7',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: Players',
long_description=open('README.rst').read(),
author="Guillaume Pellerin",
author_email="yomguy@parisson.com",
- version='0.7.3',
+ version='0.7.4',
install_requires=[
'setuptools',
'python-shout==0.2.6',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
+ python_requires='=2',
)