Skip to content
This repository was archived by the owner on Jul 30, 2021. It is now read-only.

Commit de6d91e

Browse files
authored
Merge pull request #85 from tchellomello/version_0.1.7
Version 0.1.7
2 parents 127c286 + ef1847a commit de6d91e

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

setup.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,19 @@
22
"""Python Arlo setup script."""
33
from setuptools import setup
44

5+
6+
def readme():
7+
with open('README.rst') as desc:
8+
return desc.read()
9+
10+
511
setup(
612
name='pyarlo',
713
packages=['pyarlo'],
8-
version='0.1.6',
14+
version='0.1.7',
915
description='Python Arlo is a library written in Python 2.7/3x ' +
1016
'that exposes the Netgear Arlo cameras as Python objects.',
11-
long_description='Python Arlo is a library written in Python 2.7/3x ' +
12-
'that exposes the Netgear Arlo cameras as Python objects.',
17+
long_description=readme(),
1318
author='Marcelo Moreira de Mello',
1419
author_email='tchello.mello@gmail.com',
1520
url='https://github.com/tchellomello/python-arlo',

0 commit comments

Comments
 (0)