forked from jkoelker/python-nest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (27 loc) · 1.06 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
#!/usr/bin/env python
# -*- coding:utf-8 -*-
import io
from setuptools import setup
# NOTE(jkoelker) Subjective guidelines for Major.Minor.Micro ;)
# 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 = '3.0.5'
setup(name='python-nest',
version=version,
description='Python API and command line tool for talking to the '
'Nest™ Thermostat',
long_description=io.open('README.rst', encoding='UTF-8').read(),
keywords='nest thermostat',
author='Jason Kölker',
author_email='jason@koelker.net',
url='https://github.com/jkoelker/python-nest/',
packages=['nest'],
install_requires=['requests>=1.0.0',
'six>=1.10.0',
'python-dateutil'],
entry_points={
'console_scripts': ['nest=nest.command_line:main'],
}
)