From 6a0dbee5d56f54b1355a4a88206123f7dd1eedf4 Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Fri, 26 Oct 2018 09:03:00 -0500 Subject: [PATCH] Scan for declarative Pyramid configs --- src/pgwui_logout/__init__.py | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/src/pgwui_logout/__init__.py b/src/pgwui_logout/__init__.py index e69de29..4289145 100644 --- a/src/pgwui_logout/__init__.py +++ b/src/pgwui_logout/__init__.py @@ -0,0 +1,31 @@ +# Copyright (C) 2018 The Meme Factory, Inc. http://www.meme.com/ + +# This file is part of PGWUI_Logout. +# +# This program is free software: you can redistribute it and/or +# modify it under the terms of the GNU Affero General Public License +# as published by the Free Software Foundation, either version 3 of +# the License, or (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public +# License along with this program. If not, see +# . +# + +# Karl O. Pinc + +'''Provide a way to configure PGWUI. +''' + +from pyramid.config import Configurator + + +def includeme(config): + '''Pyramid configuration for PGWUI_Logout + ''' + config.scan() -- 2.34.1