Skip to content
This repository has been archived by the owner on Feb 10, 2023. It is now read-only.

Commit

Permalink
use codecs.open for the long_description
Browse files Browse the repository at this point in the history
because RTD breaks otherwise
  • Loading branch information
mineo committed May 20, 2016
1 parent c489aa6 commit 133029c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/usr/bin/env python
from __future__ import print_function
from codecs import open
from setuptools import setup


Expand All @@ -17,7 +18,7 @@
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5"],
description="",
long_description=open("README.txt").read(),
long_description=open("README.txt", encoding="utf-8").read(),
setup_requires=["setuptools_scm"],
use_scm_version={"write_to": "abzer/version.py"},
install_requires=["aiohttp"],
Expand Down

0 comments on commit 133029c

Please sign in to comment.