From 662cc99b0c63de435406415e195cf64c7575d87b Mon Sep 17 00:00:00 2001 From: Tom S Date: Thu, 22 Nov 2012 12:15:15 +0000 Subject: [PATCH] setup.py now gets version from jqchat.__init__.VERSION --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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', -- 2.39.5