diff options
| author | Chris McDonough <chrism@agendaless.com> | 2009-11-28 04:32:08 +0000 |
|---|---|---|
| committer | Chris McDonough <chrism@agendaless.com> | 2009-11-28 04:32:08 +0000 |
| commit | e1bb8a5c8671f02c31ed0b128f3167e7d802e3ea (patch) | |
| tree | 80bb179970d613774e18365b9a01779229756e35 | |
| parent | 9d1701f7ac2f91d734fb9571d139ac57ed3e7983 (diff) | |
| download | pyramid-e1bb8a5c8671f02c31ed0b128f3167e7d802e3ea.tar.gz pyramid-e1bb8a5c8671f02c31ed0b128f3167e7d802e3ea.tar.bz2 pyramid-e1bb8a5c8671f02c31ed0b128f3167e7d802e3ea.zip | |
Fix.
4 files changed, 8 insertions, 10 deletions
diff --git a/repoze/bfg/paster_templates/routesalchemy/+package+/run.py_tmpl b/repoze/bfg/paster_templates/routesalchemy/+package+/run.py_tmpl index b592e45a9..3b392debd 100644 --- a/repoze/bfg/paster_templates/routesalchemy/+package+/run.py_tmpl +++ b/repoze/bfg/paster_templates/routesalchemy/+package+/run.py_tmpl @@ -14,7 +14,7 @@ def handle_teardown(event): environ['{{package}}.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/routesalchemy/CHANGES.txt_tmpl b/repoze/bfg/paster_templates/routesalchemy/CHANGES.txt_tmpl index 1544cf53b..35a34f332 100644 --- a/repoze/bfg/paster_templates/routesalchemy/CHANGES.txt_tmpl +++ b/repoze/bfg/paster_templates/routesalchemy/CHANGES.txt_tmpl @@ -1,3 +1,4 @@ -0.1 +0.0 +--- - Initial version +- Initial version diff --git a/repoze/bfg/paster_templates/routesalchemy/setup.py_tmpl b/repoze/bfg/paster_templates/routesalchemy/setup.py_tmpl index 595b44612..0ce1b8bad 100644 --- a/repoze/bfg/paster_templates/routesalchemy/setup.py_tmpl +++ b/repoze/bfg/paster_templates/routesalchemy/setup.py_tmpl @@ -19,22 +19,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, diff --git a/repoze/bfg/paster_templates/zodb/setup.py_tmpl b/repoze/bfg/paster_templates/zodb/setup.py_tmpl index 8de2e5a1b..dba0e4ac7 100644 --- a/repoze/bfg/paster_templates/zodb/setup.py_tmpl +++ b/repoze/bfg/paster_templates/zodb/setup.py_tmpl @@ -14,7 +14,7 @@ requires = [ ] setup(name='{{project}}', - version='0.1', + version='0.0', description='{{project}}', long_description=README + '\n\n' + CHANGES, classifiers=[ |
