mirror of
https://github.com/wassname/pysle.git
synced 2026-06-27 16:10:05 +08:00
BUGFIX: Unicode error in installation file python 2.x
This commit is contained in:
@@ -5,6 +5,7 @@ Created on Oct 15, 2014
|
||||
|
||||
@author: tmahrt
|
||||
'''
|
||||
import codecs
|
||||
from distutils.core import setup
|
||||
setup(name='pysle',
|
||||
version='1.3.0',
|
||||
@@ -13,6 +14,6 @@ setup(name='pysle',
|
||||
package_dir={'pysle':'pysle'},
|
||||
packages=['pysle'],
|
||||
license='LICENSE',
|
||||
long_description=open('README.rst', 'r').read(),
|
||||
long_description=codecs.open('README.rst', 'r', encoding="utf-8").read(),
|
||||
# install_requires=[], # No requirements! # requires 'from setuptools import setup'
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user