summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcel Hellkamp <marc@gsites.de>2009-07-09 19:46:55 +0200
committerMarcel Hellkamp <marc@gsites.de>2009-07-09 19:46:55 +0200
commit2c66628f7f41c47a3f99a5d8fef354a0e32ce889 (patch)
tree2cac03b7034ba1a8307b13dc10d85c36bdb2fc85
parent5ae0f94477ae19ce436059f954e9a34fab84284a (diff)
downloadbottle-2c66628f7f41c47a3f99a5d8fef354a0e32ce889.tar.gz
Made bottle.__version__ a string
-rw-r--r--bottle.py2
-rw-r--r--setup.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/bottle.py b/bottle.py
index 379ace6..0f68fd5 100644
--- a/bottle.py
+++ b/bottle.py
@@ -55,7 +55,7 @@ Example
"""
__author__ = 'Marcel Hellkamp'
-__version__ = ('0', '4', '6')
+__version__ = '0.4.6'
__license__ = 'MIT'
diff --git a/setup.py b/setup.py
index 7de1938..f6e569e 100644
--- a/setup.py
+++ b/setup.py
@@ -4,7 +4,7 @@ from distutils.core import setup
import bottle
setup(name='bottle',
- version='%s.%s.%s' % bottle.__version__,
+ version=bottle.__version__,
description='Fast and simple WSGI-framework for small web-applications.',
long_description='Bottle is a fast and simple mirco-framework for small web-applications. It offers request dispatching (Routes) with url parameter support, Templates, key/value Databases, a build-in HTTP Server and adapters for many third party WSGI/HTTP-server and template engines. All in a single file and with no dependencies other than the Python Standard Library.',
author='Marcel Hellkamp',