Skip to content

Commit

Permalink
FIX setup.py once again
Browse files Browse the repository at this point in the history
  • Loading branch information
drudim committed Feb 13, 2017
1 parent 8d61215 commit 74c6f77
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
here = os.path.abspath(os.path.dirname(__file__))

# Get version
with open(os.path.join(here, 'sparkly/__init__.py')) as init_py:
with open(os.path.join(here, 'sparkly/__init__.py'), 'rb') as init_py:
version = re.search('__version__ = \'([\w.]+)\'', init_py.read().decode('utf-8')).group(1)

# Get the long description from the relevant file
with open(os.path.join(here, 'README.rst')) as readme_rst:
with open(os.path.join(here, 'README.rst'), 'rb') as readme_rst:
long_description = readme_rst.read().decode('utf-8')

# Get requirements
Expand Down

0 comments on commit 74c6f77

Please sign in to comment.