You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
548 B

  1. --- a/setup.py
  2. +++ b/setup.py
  3. @@ -4,6 +4,7 @@
  4. Setup script for the Parsley distribution.
  5. """
  6. +import io
  7. from distutils.core import setup
  8. setup(
  9. name="Parsley",
  10. @@ -13,7 +14,7 @@ setup(
  11. author="Allen Short",
  12. author_email="washort42@gmail.com",
  13. license="MIT License",
  14. - long_description=open("README").read(),
  15. + long_description=io.open("README", encoding="utf-8").read(),
  16. packages=["ometa", "terml", "ometa._generated", "terml._generated",
  17. "ometa.test", "terml.test"],
  18. py_modules=["parsley"]