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 7cc0827 commit c8ba64eCopy full SHA for c8ba64e
setup.py
@@ -2,11 +2,11 @@
2
3
from setuptools import find_packages, setup
4
5
-import zigpy_xbee.const as xbee_const
+import zigpy_xbee
6
7
setup(
8
name="zigpy-xbee-homeassistant",
9
- version=xbee_const.__version__,
+ version=zigpy_xbee.__version__,
10
description="A library which communicates with XBee radios for zigpy",
11
url="http://github.com/zigpy/zigpy-xbee",
12
author="Russell Cloran",
tests/test_const.py
zigpy_xbee/__init__.py
@@ -0,0 +1,5 @@
1
+MAJOR_VERSION = 0
+MINOR_VERSION = 2
+PATCH_VERSION = '1'
+__short_version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION)
+__version__ = '{}.{}'.format(__short_version__, PATCH_VERSION)
zigpy_xbee/const.py
0 commit comments