diff --git a/setup.py b/setup.py index e907fcf..c353c95 100644 --- a/setup.py +++ b/setup.py @@ -2,14 +2,19 @@ """Python Arlo setup script.""" from setuptools import setup + +def readme(): + with open('README.rst') as desc: + return desc.read() + + setup( name='pyarlo', packages=['pyarlo'], - version='0.1.6', + version='0.1.7', description='Python Arlo is a library written in Python 2.7/3x ' + 'that exposes the Netgear Arlo cameras as Python objects.', - long_description='Python Arlo is a library written in Python 2.7/3x ' + - 'that exposes the Netgear Arlo cameras as Python objects.', + long_description=readme(), author='Marcelo Moreira de Mello', author_email='tchello.mello@gmail.com', url='https://github.com/tchellomello/python-arlo',