From 079bb25384a6c7dff3acc7c0340a52adeb645c90 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Tue, 18 Jan 2011 15:14:40 -0500 Subject: prep for 1.0a10 --- setup.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 587e1bb1f..6aefeb482 100644 --- a/setup.py +++ b/setup.py @@ -12,8 +12,6 @@ # ############################################################################## -__version__ = '0.0' - import os import platform import sys @@ -54,7 +52,7 @@ if sys.version_info[:2] < (2, 6): install_requires.append('simplejson') setup(name='pyramid', - version=__version__, + version='1.0a10', description='The Pyramid web application framework, a Pylons project', long_description=README + '\n\n' + CHANGES, classifiers=[ @@ -79,7 +77,6 @@ setup(name='pyramid', entry_points = """\ [paste.paster_create_template] pyramid_starter=pyramid.paster:StarterProjectTemplate - pyramid_starter_zcml=pyramid.paster:StarterZCMLProjectTemplate pyramid_zodb=pyramid.paster:ZODBProjectTemplate pyramid_routesalchemy=pyramid.paster:RoutesAlchemyProjectTemplate pyramid_alchemy=pyramid.paster:AlchemyProjectTemplate -- cgit v1.2.3 From 92e9f816ea74ade50c0c4237d8cd304b346b26d3 Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Tue, 18 Jan 2011 22:14:21 -0500 Subject: get rid of __version__ indirection --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 6aefeb482..0f7a88433 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ ############################################################################## # -# Copyright (c) 2008-2010 Agendaless Consulting and Contributors. +# Copyright (c) 2008-2011 Agendaless Consulting and Contributors. # All Rights Reserved. # # This software is subject to the provisions of the BSD-like license at -- cgit v1.2.3