Compare commits

...
2 Commits
Author SHA1 Message Date
Kevin FronczakandGitHub 9b33b27463 Merge pull request #8 from fronzbot/patch
Changed to wheel and incremented minor version
2017-03-05 21:58:19 -05:00
Kevin Fronczak e0f6384dde Changed to wheel and incremented minor version 2017-03-05 21:56:52 -05:00
2 changed files with 2 additions and 5 deletions
-2
View File
@@ -17,8 +17,6 @@ import requests
import getpass
import json
__version__ = '0.4.2'
BLINK_URL = 'immedia-semi.com'
LOGIN_URL = 'https://prod.' + BLINK_URL + '/login'
BASE_URL = 'https://prod.' + BLINK_URL
+2 -3
View File
@@ -1,11 +1,10 @@
# -*- coding: utf-8 -*-
from blinkpy import __version__
from setuptools import setup
setup(
name = 'blinkpy',
version = __version__,
version = '0.4.',
description = 'A Blink camera Python library',
long_description='A library that communicates with Blink cameras',
author = 'Kevin Fronczak',
@@ -13,7 +12,7 @@ setup(
license='MIT',
url = 'https://github.com/fronzbot/blinkpy',
py_modules=['blinkpy'],
install_requires=['requests'],
install_requires=['requests>=2,<3'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',