Skip to content

Commit

Permalink
Merge pull request #86 from the-artists-formerly-known-as-spam/python…
Browse files Browse the repository at this point in the history
…2message

improved support for issue #83 - better error message when trying to …
  • Loading branch information
lordmauve committed Jul 28, 2018
2 parents 319dade + 69b1ca9 commit 64aedb3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import sys
import io
import os.path
from setuptools import setup
import pgzero

path = os.path.join(os.path.dirname(__file__), 'README.rst')
with open(path, encoding='utf8') as f:
with io.open(path, encoding='utf8') as f:
LONG_DESCRIPTION = f.read()

install_requires = [
Expand Down Expand Up @@ -34,6 +35,7 @@
},
install_requires=install_requires,
extras_require=extras_require,
python_requires='>3',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Education',
Expand Down

0 comments on commit 64aedb3

Please sign in to comment.