Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
Update setup.py to read long_description from README.rst
  • Loading branch information
elyezer committed Jan 20, 2014
1 parent ef514be commit 033ceda
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
from distutils.core import setup

with open('README.rst') as file:
long_description = file.read()

setup(
name='testimony',
version='0.1.0',
url='https://github.com/sthirugn/testimony/',
author='Suresh Thirugn',
author_email='[email protected]',
packages=['testimony', ],
packages=['testimony'],
scripts=['bin/testimony'],
long_description=open('README.md').read(),
long_description=long_description,
)

0 comments on commit 033ceda

Please sign in to comment.