Skip to content

Commit

Permalink
Merge pull request #37 from RobertLucian/master
Browse files Browse the repository at this point in the history
fix pip installing the library in python 3
  • Loading branch information
muodov authored Jun 26, 2019
2 parents 64fd123 + 7fa3df2 commit d0e4101
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,8 +1,9 @@
import os
import io

from setuptools import setup

long_description = open(os.path.join(os.path.dirname(__file__), 'README.md')).read()
long_description = io.open(os.path.join(os.path.dirname(__file__), 'README.md'), encoding='utf-8').read()

setup(
name='kociemba',
Expand Down

0 comments on commit d0e4101

Please sign in to comment.