Changeset - cc48c1541c7e
[Not reviewed]
0.0 default
0 2 0
Mads Kiilerich - 11 years ago 2014-07-04 15:58:04
madski@unity3d.com
Fixes for pypi - increment version to 0.0
2 files changed with 3 insertions and 2 deletions:
0 comments (0 inline, 0 general)
kallithea/__init__.py
Show inline comments
 
@@ -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',
setup.py
Show inline comments
 
@@ -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',
 
]
 

	
 

	
0 comments (0 inline, 0 general)