We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 26354ef commit dc106dcCopy full SHA for dc106dc
setup.py
@@ -2,9 +2,11 @@
2
3
from setuptools import find_packages, setup
4
5
+import zigpy_deconz
6
+
7
setup(
8
name="zigpy-deconz",
- version="0.2.2",
9
+ version=zigpy_deconz.__version__,
10
description="A library which communicates with Deconz radios for zigpy",
11
url="http://github.com/zigpy/zigpy-deconz",
12
author="Daniel Schmidt",
zigpy_deconz/__init__.py
@@ -0,0 +1,6 @@
1
+# coding: utf-8
+MAJOR_VERSION = 0
+MINOR_VERSION = 3
+PATCH_VERSION = '0'
+__short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
+__version__ = '{}.{}'.format(__short_version__, PATCH_VERSION)
0 commit comments