Skip to content

Commit

Permalink
updated setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
FlyingBird95 committed Mar 19, 2018
1 parent ed6c940 commit d0ae956
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import setuptools
import io


def desc():
info = ''
with open('README.md', encoding='utf-8') as readme:
with open('README.md') as readme:
info = readme.read()
with open('CHANGELOG.rst', encoding='utf-8') as changelog:
info = info + '\n\n' + changelog.read()
with open('CHANGELOG.rst') as changelog:
info = info + '\n\n' + changelog.read()
return info

with open('requirements.txt') as f:
Expand Down

0 comments on commit d0ae956

Please sign in to comment.