fix README.rst -> long_description encoding
This commit is contained in:
parent
4720513672
commit
834468e8e7
4
setup.py
4
setup.py
|
@ -10,7 +10,7 @@ from distutils.util import strtobool
|
||||||
from setuptools import setup
|
from setuptools import setup
|
||||||
|
|
||||||
|
|
||||||
def open_local(paths, mode='r', encoding='latin1'):
|
def open_local(paths, mode='r', encoding='utf8'):
|
||||||
path = os.path.join(
|
path = os.path.join(
|
||||||
os.path.abspath(os.path.dirname(__file__)),
|
os.path.abspath(os.path.dirname(__file__)),
|
||||||
*paths
|
*paths
|
||||||
|
@ -19,7 +19,7 @@ def open_local(paths, mode='r', encoding='latin1'):
|
||||||
return codecs.open(path, mode, encoding)
|
return codecs.open(path, mode, encoding)
|
||||||
|
|
||||||
|
|
||||||
with open_local(['sanic', '__init__.py']) as fp:
|
with open_local(['sanic', '__init__.py'], encoding='latin1') as fp:
|
||||||
try:
|
try:
|
||||||
version = re.findall(r"^__version__ = '([^']+)'\r?$",
|
version = re.findall(r"^__version__ = '([^']+)'\r?$",
|
||||||
fp.read(), re.M)[0]
|
fp.read(), re.M)[0]
|
||||||
|
|
Loading…
Reference in New Issue
Block a user