mirror of
https://github.com/dnet/pySSTV.git
synced 2025-12-06 07:12:00 +01:00
removed unicode_literals from setup.py
This commit is contained in:
parent
6c6d5b50e5
commit
e99f854097
3
setup.py
3
setup.py
|
|
@ -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'],
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue