From 5464c6a525449fdf3eb433916734f639ce5205ff Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Sat, 28 Nov 2009 04:34:15 +0000 Subject: Fix. --- repoze/bfg/paster_templates/alchemy/+package+/run.py_tmpl | 2 +- repoze/bfg/paster_templates/alchemy/CHANGES.txt_tmpl | 3 ++- repoze/bfg/paster_templates/alchemy/setup.py_tmpl | 9 +++------ 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/repoze/bfg/paster_templates/alchemy/+package+/run.py_tmpl b/repoze/bfg/paster_templates/alchemy/+package+/run.py_tmpl index 7ef208c30..462691048 100644 --- a/repoze/bfg/paster_templates/alchemy/+package+/run.py_tmpl +++ b/repoze/bfg/paster_templates/alchemy/+package+/run.py_tmpl @@ -14,7 +14,7 @@ def handle_teardown(event): environ['usermanager.sasession'] = Cleanup(DBSession.remove) def app(global_config, **settings): - """ This function returns a repoze.bfg.router.Router object. + """ This function returns a ``repoze.bfg`` WSGI application. It is usually called by the PasteDeploy framework during ``paster serve``. """ diff --git a/repoze/bfg/paster_templates/alchemy/CHANGES.txt_tmpl b/repoze/bfg/paster_templates/alchemy/CHANGES.txt_tmpl index 1544cf53b..5b34f7803 100644 --- a/repoze/bfg/paster_templates/alchemy/CHANGES.txt_tmpl +++ b/repoze/bfg/paster_templates/alchemy/CHANGES.txt_tmpl @@ -1,3 +1,4 @@ 0.1 +--- - Initial version +- Initial version diff --git a/repoze/bfg/paster_templates/alchemy/setup.py_tmpl b/repoze/bfg/paster_templates/alchemy/setup.py_tmpl index bbeedf3f3..9446964e5 100644 --- a/repoze/bfg/paster_templates/alchemy/setup.py_tmpl +++ b/repoze/bfg/paster_templates/alchemy/setup.py_tmpl @@ -18,22 +18,19 @@ if sys.version_info[:3] < (2,5,0): requires.append('pysqlite') setup(name='{{project}}', - version='0.1', + version='0.0', description='{{project}}', long_description=README + '\n\n' + CHANGES, classifiers=[ - "Development Status :: 3 - Alpha", - "Intended Audience :: Developers", "Programming Language :: Python", + "Framework :: BFG", "Topic :: Internet :: WWW/HTTP", - "Topic :: Internet :: WWW/HTTP :: Dynamic Content", - "Topic :: Internet :: WWW/HTTP :: WSGI", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", ], author='', author_email='', url='', - keywords='web wsgi bfg zope', + keywords='web wsgi bfg', packages=find_packages(), include_package_data=True, zip_safe=False, -- cgit v1.2.3