<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -3,3 +3,4 @@
 *.db
 build
 MANIFEST
+dist</diff>
      <filename>.gitignore</filename>
    </modified>
    <modified>
      <diff>@@ -1,10 +1,26 @@
-==============
-Django Tagging
-==============
+=================
+Django Tagging NG
+=================
 
-This is a generic tagging application for Django projects
+This is a enhanced tagging application for Django projects
 
 For installation instructions, see the file &quot;INSTALL.txt&quot; in this
 directory; for instructions on how to use this application, and on
 what it provides, see the file &quot;overview.txt&quot; in the &quot;docs/&quot;
-directory.
\ No newline at end of file
+directory.
+
+Authors
+-------
+
+This application is based on the original code, written by:
+    Jonathan Buchanan &lt;jonathan.buchanan@gmail.com&gt;
+
+Enhanced by:
+    Alexander Artemenko &lt;svetlyak.40wt@gmail.com&gt;
+
+Sources
+-------
+
+Django-tagging-ng: http://github.com/svetlyak40wt/django-tagging-ng/
+Django-tagging:    http://code.google.com/p/django-tagging/
+</diff>
      <filename>README.txt</filename>
    </modified>
    <modified>
      <diff>@@ -46,19 +46,21 @@ for dirpath, dirnames, filenames in os.walk(tagging_dir):
         data_files.append([dirpath, [os.path.join(dirpath, f) for f in filenames]])
 
 # Dynamically calculate the version based on tagging.VERSION
-version_tuple = (0, 3, 'pre')
-if version_tuple[2] is not None:
-    version = &quot;%d.%d_%s&quot; % version_tuple
+version_tuple = (0, 3, 1)
+if isinstance(version_tuple[-1], basestring):
+    _version_template = '.'.join(('%d',) * (len(version_tuple)-1)) + '_%s'
 else:
-    version = &quot;%d.%d&quot; % version_tuple[:2]
+    _version_template = '.'.join(('%d',) * len(version_tuple))
+
+version = _version_template % version_tuple
 
 setup(
-    name = 'tagging',
+    name = 'django-tagging-ng',
     version = version,
-    description = 'Generic tagging application for Django',
-    author = 'Jonathan Buchanan',
-    author_email = 'jonathan.buchanan@gmail.com',
-    url = 'http://code.google.com/p/django-tagging/',
+    description = 'Enhanced tagging application for Django, based on django-tagging',
+    author = 'Alexander Artemenko',
+    author_email = 'svetlyak.40wt@gmail.com',
+    url = 'http://github.com/svetlyak40wt/django-tagging-ng/',
     packages = packages,
     data_files = data_files,
     classifiers = ['Development Status :: 4 - Beta',</diff>
      <filename>setup.py</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>7092ed53d4c8b8b8d0dcddd55aaae6d66c27c497</id>
    </parent>
  </parents>
  <author>
    <name>Alexander Artemenko</name>
    <email>svetlyak.40wt@gmail.com</email>
  </author>
  <url>http://github.com/svetlyak40wt/django-tagging-ng/commit/02afc2d51f0258464b37465601d49e8531e9245a</url>
  <id>02afc2d51f0258464b37465601d49e8531e9245a</id>
  <committed-date>2009-04-11T02:52:28-07:00</committed-date>
  <authored-date>2009-04-11T02:52:28-07:00</authored-date>
  <message>Minor changes in readme and setup.py for more smart version number generation. Packages was renamed to django-tagging-ng.</message>
  <tree>76a3035169ff178578ff749a77302556b8edd855</tree>
  <committer>
    <name>Alexander Artemenko</name>
    <email>svetlyak.40wt@gmail.com</email>
  </committer>
</commit>
