removed unicode_literals from setup.py

This commit is contained in:
András Veres-Szentkirályi 2013-06-24 14:33:14 +02:00
parent 6c6d5b50e5
commit e99f854097

View file

@ -1,13 +1,12 @@
# -*- encoding: utf-8 -*- # -*- encoding: utf-8 -*-
from __future__ import unicode_literals
from distutils.core import setup from distutils.core import setup
setup( setup(
name='PySSTV', name='PySSTV',
version='0.1', version='0.1',
description='Python classes for generating Slow-scan Television transmissions', description='Python classes for generating Slow-scan Television transmissions',
author='András Veres-Szentkirályi', author=u'András Veres-Szentkirályi',
author_email='vsza@vsza.hu', author_email='vsza@vsza.hu',
url='https://github.com/dnet/pySSTV', url='https://github.com/dnet/pySSTV',
packages=['pysstv', 'pysstv.tests', 'pysstv.examples'], packages=['pysstv', 'pysstv.tests', 'pysstv.examples'],