diff --git a/kallithea/__init__.py b/kallithea/__init__.py --- a/kallithea/__init__.py +++ b/kallithea/__init__.py @@ -29,7 +29,7 @@ Original author and date, and relevant c import sys import platform -VERSION = (0,) +VERSION = (0, 0) BACKENDS = { 'hg': 'Mercurial repository', 'git': 'Git repository', diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -77,7 +77,7 @@ dependency_links = [ ] classifiers = [ - 'Development Status :: 4 - Beta' + 'Development Status :: 4 - Beta', 'Environment :: Web Environment', 'Framework :: Pylons', 'Intended Audience :: Developers', @@ -87,6 +87,7 @@ classifiers = [ 'Programming Language :: Python :: 2.5', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', + 'Topic :: Software Development :: Version Control', ]