Skip to content

Commit

Permalink
Had to update version due to messing up the module distribution
Browse files Browse the repository at this point in the history
  • Loading branch information
fronzbot committed Mar 13, 2017
1 parent b4a0377 commit 7d36638
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 0 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,3 @@ include README.rst
include LICENSE.md
include API.md
include tests/*.py
include helpers/*.py
2 changes: 1 addition & 1 deletion helpers/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

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)
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -17,6 +17,7 @@
url = PROJECT_URL,
platforms = 'any',
py_modules = ['blinkpy'],
packages=find_packages(),
install_requires = ['requests>=2,<3'],
test_suite = 'tests',
classifiers = PROJECT_CLASSIFIERS
Expand Down

0 comments on commit 7d36638

Please sign in to comment.