forked from jkoelker/python-nest
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
executable file
·39 lines (33 loc) · 1.22 KB
/
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
33
34
35
36
37
38
39
#!/usr/bin/env python3
# -*- coding:utf-8 -*-
import io
from setuptools import setup
# Bumping Major means an API contract change.
# Bumping Minor means API bugfix or new functionality.
# Bumping Micro means CLI change of any kind unless it is
# significant enough to warrant a minor/major bump.
version = '5.2.1'
setup(name='python-google-nest',
version=version,
description='Python API and command line tool for talking to the '
'Nest™ Thermostat through new Google API',
long_description_content_type="text/markdown",
long_description=io.open('README.md', encoding='UTF-8').read(),
keywords='nest thermostat',
author='Jonathan Diamond',
author_email='[email protected]',
url='https://github.com/axlan/python-nest/',
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
python_requires=">=3.6",
packages=['nest'],
install_requires=[
# Tested with requests_oauthlib==1.3.0
'requests_oauthlib'
],
entry_points={
'console_scripts': ['nest=nest.command_line:main'],
}
)