forked from allenporter/python-google-nest-sdm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 966 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import pathlib
from setuptools import setup
VERSION = '0.2.6'
HERE = pathlib.Path(__file__).parent
README = (HERE / "README.md").read_text()
setup(name='google_nest_sdm',
version=VERSION,
description='Library for the Google Nest SDM API',
long_description=README,
long_description_content_type="text/markdown",
keywords='google nest sdm camera therostat security doorbell',
author='Allen Porter',
author_email='[email protected]',
url='https://github.com/allenporter/python-google-nest-sdm',
packages=['google_nest_sdm'],
include_package_data=True,
install_requires=[
'aiohttp>=3.6.2',
'google-auth>=1.22.0',
'google-auth-oauthlib>=0.4.1',
'google-cloud-pubsub>=2.1.0',
'requests-oauthlib>=1.3.0',
],
entry_points = {
'console_scripts': [
'google_nest=google_nest_sdm.google_nest:main',
],
}
)