Merge pull request #64 from barseghyanartur/develop

fix setup for python 3
This commit is contained in:
Michael Kutý 2015-08-18 15:59:42 +02:00
commit fbc2891c41

View file

@ -5,7 +5,9 @@ from setuptools import setup, find_packages
def read(*parts):
return codecs.open(os.path.join(os.path.dirname(__file__), *parts)).read()
filename = os.path.join(os.path.dirname(__file__), *parts)
with codecs.open(filename, encoding='utf-8') as fp:
return fp.read()
def find_version(*file_paths):