changeset 4246:cc48c1541c7e 0.0

Fixes for pypi - increment version to 0.0
author Mads Kiilerich <madski@unity3d.com>
date Fri, 04 Jul 2014 15:58:04 +0200
parents 3315e9263a53
children 9a6c224e1f68
files kallithea/__init__.py setup.py
diffstat 2 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/kallithea/__init__.py	Fri Jul 04 09:40:56 2014 -0400
+++ b/kallithea/__init__.py	Fri Jul 04 15:58:04 2014 +0200
@@ -29,7 +29,7 @@
 import sys
 import platform
 
-VERSION = (0,)
+VERSION = (0, 0)
 BACKENDS = {
     'hg': 'Mercurial repository',
     'git': 'Git repository',
--- a/setup.py	Fri Jul 04 09:40:56 2014 -0400
+++ b/setup.py	Fri Jul 04 15:58:04 2014 +0200
@@ -77,7 +77,7 @@
 ]
 
 classifiers = [
-    'Development Status :: 4 - Beta'
+    'Development Status :: 4 - Beta',
     'Environment :: Web Environment',
     'Framework :: Pylons',
     'Intended Audience :: Developers',
@@ -87,6 +87,7 @@
     'Programming Language :: Python :: 2.5',
     'Programming Language :: Python :: 2.6',
     'Programming Language :: Python :: 2.7',
+    'Topic :: Software Development :: Version Control',
 ]