/view_shortcuts/__init__.py
Python | 15 lines | 5 code | 2 blank | 8 comment | 0 complexity | 2e35d8934eb4562d63e84dfc80a04aca MD5 | raw file
Possible License(s): LGPL-3.0
1# -*- coding: utf-8 -*- 2# 3# Copyright (c) 2009 Andy Mikhailenko and contributors 4# 5# Django View Shortcuts is free software under terms of the GNU Lesser 6# General Public License version 3 (LGPLv3) as published by the Free 7# Software Foundation. See the file README for copying conditions. 8# 9 10" A set of shortcuts for Django views. " 11 12__author__ = 'Andy Mikhailenko' 13__license__ = 'GNU Lesser General Public License (GPL), Version 3' 14__url__ = 'http://bitbucket.org/neithere/django-view-shortcuts/' 15__version__ = '1.3.5'