Remove unicode_literal from plugins setup.py

There is a bug in Py2 setuptools where the build fails if unicode dict keys
 are passed to package_data:

    `package_data must be a dictionary mapping package names to lists of wildcard patterns`

 The easiest workaround is to remove unicode_literals use in setup.py as it is not that important.
This commit is contained in:
Calum Lind 2017-02-23 16:42:53 +00:00
parent d75afc007d
commit 49e5611f65
10 changed files with 0 additions and 20 deletions

View File

@ -13,8 +13,6 @@
# See LICENSE for more details.
#
from __future__ import unicode_literals
from setuptools import find_packages, setup
__plugin_name__ = 'AutoAdd'

View File

@ -7,8 +7,6 @@
# See LICENSE for more details.
#
from __future__ import unicode_literals
from setuptools import find_packages, setup
__plugin_name__ = 'Blocklist'

View File

@ -7,8 +7,6 @@
# See LICENSE for more details.
#
from __future__ import unicode_literals
from setuptools import find_packages, setup
__plugin_name__ = 'Execute'

View File

@ -11,8 +11,6 @@
# See LICENSE for more details.
#
from __future__ import unicode_literals
from setuptools import find_packages, setup
__plugin_name__ = 'Extractor'

View File

@ -7,8 +7,6 @@
# See LICENSE for more details.
#
from __future__ import unicode_literals
from setuptools import find_packages, setup
__plugin_name__ = 'Label'

View File

@ -12,8 +12,6 @@
# See LICENSE for more details.
#
from __future__ import unicode_literals
from setuptools import find_packages, setup
__plugin_name__ = 'Notifications'

View File

@ -11,8 +11,6 @@
# See LICENSE for more details.
#
from __future__ import unicode_literals
from setuptools import find_packages, setup
__plugin_name__ = 'Scheduler'

View File

@ -12,8 +12,6 @@
# See LICENSE for more details.
#
from __future__ import unicode_literals
from setuptools import find_packages, setup
__plugin_name__ = 'Stats'

View File

@ -12,8 +12,6 @@
# See LICENSE for more details.
#
from __future__ import unicode_literals
from setuptools import find_packages, setup
__plugin_name__ = 'Toggle'

View File

@ -11,8 +11,6 @@
# See LICENSE for more details.
#
from __future__ import unicode_literals
from setuptools import find_packages, setup
__plugin_name__ = 'WebUi'