From 7d366386dace0fa84dbfd2cd89dbb9d0cd86fe50 Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Sun, 12 Mar 2017 22:06:39 -0400 Subject: [PATCH] Had to update version due to messing up the module distribution --- MANIFEST.in | 1 - helpers/constants.py | 2 +- setup.py | 3 ++- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 3eb1ac3..00970ff 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -2,4 +2,3 @@ include README.rst include LICENSE.md include API.md include tests/*.py -include helpers/*.py diff --git a/helpers/constants.py b/helpers/constants.py index 6ef8d94..554bc61 100644 --- a/helpers/constants.py +++ b/helpers/constants.py @@ -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) diff --git a/setup.py b/setup.py index 5f5cd7c..5f9882b 100644 --- a/setup.py +++ b/setup.py @@ -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