From e99f854097e7c16632cfdb6cad7c43318e0039d3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A1s=20Veres-Szentkir=C3=A1lyi?= Date: Mon, 24 Jun 2013 14:33:14 +0200 Subject: [PATCH] removed unicode_literals from setup.py --- setup.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 33e1725..f791323 100644 --- a/setup.py +++ b/setup.py @@ -1,13 +1,12 @@ # -*- encoding: utf-8 -*- -from __future__ import unicode_literals from distutils.core import setup setup( name='PySSTV', version='0.1', 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', url='https://github.com/dnet/pySSTV', packages=['pysstv', 'pysstv.tests', 'pysstv.examples'],