Making some preparations for release in the documentation and setup.py.

This commit is contained in:
Jonathan LaCour
2011-09-02 15:03:04 -04:00
parent 60296833ae
commit 7ad16aa6f9
2 changed files with 4 additions and 4 deletions

View File

@@ -48,9 +48,9 @@ copyright = u'2010, Jonathan LaCour'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '0.0.1' version = '0.1.0'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '0.0.1' release = '0.1.0'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View File

@@ -1,6 +1,6 @@
from setuptools import setup, Command, find_packages from setuptools import setup, Command, find_packages
version = '0.1' version = '0.1.0'
# #
# integration with py.test for `python setup.py test` # integration with py.test for `python setup.py test`
@@ -46,7 +46,7 @@ except:
setup( setup(
name = 'pecan', name = 'pecan',
version = version, version = version,
description = "A WSGI object-dispatching web framework, in the spirit of TurboGears, only much much smaller, with many fewer dependencies.", description = "A WSGI object-dispatching web framework, designed to be lean and fast, with few dependancies.",
long_description = None, long_description = None,
classifiers = [], classifiers = [],
keywords = '', keywords = '',