Merge pull request #17 from fronzbot/master

Pulling in updates from master to dev branch
This commit is contained in:
Kevin Fronczak
2017-03-14 15:07:56 -04:00
committed by GitHub
4 changed files with 5 additions and 4 deletions
-1
View File
@@ -2,4 +2,3 @@ include README.rst
include LICENSE.md
include API.md
include tests/*.py
include helpers/*.py
+2 -1
View File
@@ -116,7 +116,8 @@ The ``BlinkURLHandler`` class expects to be initialized with the region id found
.. |Build Status| image:: https://travis-ci.org/fronzbot/blinkpy.svg?branch=master
:target: https://travis-ci.org/fronzbot/blinkpy
.. |Coverage Status| image:: https://coveralls.io/repos/github/fronzbot/blinkpy/badge.svg?branch=master
:target: https://coveralls.io/r/fronzbot/blinkpy?branch=master
:target: https://coveralls.io/github/fronzbot/blinkpy?branch=master
+1 -1
View File
@@ -6,7 +6,7 @@ import os
MAJOR_VERSION = 0
MINOR_VERSION = 5
PATCH_VERSION = 0
PATCH_VERSION = 2
__version__ = '{}.{}.{}'.format(MAJOR_VERSION, MINOR_VERSION, PATCH_VERSION)
REQUIRED_PYTHON_VER = (3, 4, 2)
+2 -1
View File
@@ -1,5 +1,5 @@
# -*- coding: utf-8 -*-
from setuptools import setup
from setuptools import setup, find_packages
from helpers.constants import (__version__, PROJECT_PACKAGE_NAME,
PROJECT_LICENSE, PROJECT_URL,
PROJECT_EMAIL, PROJECT_DESCRIPTION,
@@ -17,6 +17,7 @@ setup(
url = PROJECT_URL,
platforms = 'any',
py_modules = ['blinkpy'],
packages=find_packages(),
install_requires = ['requests>=2,<3'],
test_suite = 'tests',
classifiers = PROJECT_CLASSIFIERS