diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-11-28 04:34:15 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-11-28 04:34:15 +0000 |
| commit | 5464c6a525449fdf3eb433916734f639ce5205ff (patch) | |
| tree | b51d0519ba7f8de643d7566db68ce1beb59b2ffe | |
| parent | e1bb8a5c8671f02c31ed0b128f3167e7d802e3ea (diff) | |
| download | pyramid-5464c6a525449fdf3eb433916734f639ce5205ff.tar.gz pyramid-5464c6a525449fdf3eb433916734f639ce5205ff.tar.bz2 pyramid-5464c6a525449fdf3eb433916734f639ce5205ff.zip | |
Fix.
| -rw-r--r-- | repoze/bfg/paster_templates/alchemy/+package+/run.py_tmpl | 2 | ||||
| -rw-r--r-- | repoze/bfg/paster_templates/alchemy/CHANGES.txt_tmpl | 3 | ||||
| -rw-r--r-- | 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, |
