Skip to content

Commit

Permalink
fix the setup.py file
Browse files Browse the repository at this point in the history
  • Loading branch information
intiocean committed Oct 12, 2013
1 parent c99eb75 commit 9f9ebbb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -3,9 +3,9 @@
version = '0.1.2'

with open('README.rst', 'r') as f:
long_desc = f.readlines()
long_desc = f.read()
with open('HISTORY.rst') as f:
long_desc += '\n\n' + f.readlines()
long_desc += '\n\n' + f.read()

setup(name='pyinter',
version=version,
Expand Down

0 comments on commit 9f9ebbb

Please sign in to comment.