Index: setup.py =================================================================== diff -u -ra3e1c7cc35fc1f2d0b3240341f161efb3e407549 -r24e107b2ac852390b49583c5390860aadde6244a --- setup.py (.../setup.py) (revision a3e1c7cc35fc1f2d0b3240341f161efb3e407549) +++ setup.py (.../setup.py) (revision 24e107b2ac852390b49583c5390860aadde6244a) @@ -14,11 +14,11 @@ # ############################################################################ import setuptools -from version import VERSION +from version import * setuptools.setup( name="dialin", - version=VERSION, + version=DEV_VERSION, author="Peter Lucia", author_email="plucia@diality.com", description="The Diality Dialin API", @@ -40,6 +40,7 @@ "python-can", "python-dateutil", "six", - "wrapt" + "wrapt", + "openpyxl" ] )