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

Version 0.1.7 #85

Merged
merged 2 commits into from
Jun 16, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down