This commit is contained in:
Jiachen Yang 2017-01-01 05:08:25 +00:00 committed by GitHub
commit 976c0deaf5

View file

@ -1,6 +1,7 @@
#!/usr/bin/env python #!/usr/bin/env python
from os import walk from os import walk
from os.path import join, relpath from os.path import join, relpath
from io import open
from setuptools import setup from setuptools import setup
@ -17,8 +18,8 @@ entry_points = {
] ]
} }
README = open('README.rst').read() README = open('README.rst', 'r', encoding='utf-8').read()
CHANGELOG = open('docs/changelog.rst').read() CHANGELOG = open('docs/changelog.rst', 'r', encoding='utf-8').read()
setup( setup(
name='pelican', name='pelican',