From: Tom S Date: Thu, 22 Nov 2012 12:15:15 +0000 (+0000) Subject: setup.py now gets version from jqchat.__init__.VERSION X-Git-Url: https://git.parisson.com/?a=commitdiff_plain;h=662cc99b0c63de435406415e195cf64c7575d87b;p=django-jqchat.git setup.py now gets version from jqchat.__init__.VERSION --- diff --git a/setup.py b/setup.py index c24a1f0..9c0a6e2 100644 --- a/setup.py +++ b/setup.py @@ -1,8 +1,10 @@ from setuptools import setup, find_packages +import jqchat + setup( name='django-jqchat', - version="0.1", + version=".".join(map(str, jqchat.VERSION)), url="https://github.com/tomscytale/django-jqchat", install_requires=[ 'django-timezones',