File tree Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Expand file tree Collapse file tree 2 files changed +2
-5
lines changed Original file line number Diff line number Diff line change 17
17
import getpass
18
18
import json
19
19
20
- __version__ = '0.4.2'
21
-
22
20
BLINK_URL = 'immedia-semi.com'
23
21
LOGIN_URL = 'https://prod.' + BLINK_URL + '/login'
24
22
BASE_URL = 'https://prod.' + BLINK_URL
Original file line number Diff line number Diff line change 1
1
# -*- coding: utf-8 -*-
2
2
3
- from blinkpy import __version__
4
3
from setuptools import setup
5
4
6
5
setup (
7
6
name = 'blinkpy' ,
8
- version = __version__ ,
7
+ version = '0.4.' ,
9
8
description = 'A Blink camera Python library' ,
10
9
long_description = 'A library that communicates with Blink cameras' ,
11
10
author = 'Kevin Fronczak' ,
12
11
author_email = "kfronczak@gmail.com" ,
13
12
license = 'MIT' ,
14
13
url = 'https://github.com/fronzbot/blinkpy' ,
15
14
py_modules = ['blinkpy' ],
16
- install_requires = ['requests' ],
15
+ install_requires = ['requests>=2,<3 ' ],
17
16
classifiers = [
18
17
'Development Status :: 4 - Beta' ,
19
18
'Intended Audience :: Developers' ,
You can’t perform that action at this time.
0 commit comments