diff options
| author | Tom Christie | 2013-12-05 11:05:25 +0000 | 
|---|---|---|
| committer | Tom Christie | 2013-12-05 11:05:25 +0000 | 
| commit | 1f8069c0a9740297e7b5d5fa0c81830c876d7240 (patch) | |
| tree | 5a2a4d06899871fb9f2592deb652b2b7ee45d1f9 | |
| parent | f8088bedef04c5bc487bdc764ac54d1f18f42c26 (diff) | |
| download | django-rest-framework-1f8069c0a9740297e7b5d5fa0c81830c876d7240.tar.bz2 | |
Boilerplate cuteness
| -rw-r--r-- | rest_framework/__init__.py | 16 | 
1 files changed, 15 insertions, 1 deletions
| diff --git a/rest_framework/__init__.py b/rest_framework/__init__.py index de82fef5..b6a4d3a0 100644 --- a/rest_framework/__init__.py +++ b/rest_framework/__init__.py @@ -1,6 +1,20 @@ +""" +______ _____ _____ _____    __                                             _     +| ___ \  ___/  ___|_   _|  / _|                                           | |    +| |_/ / |__ \ `--.  | |   | |_ _ __ __ _ _ __ ___   _____      _____  _ __| | __ +|    /|  __| `--. \ | |   |  _| '__/ _` | '_ ` _ \ / _ \ \ /\ / / _ \| '__| |/ / +| |\ \| |___/\__/ / | |   | | | | | (_| | | | | | |  __/\ V  V / (_) | |  |   <  +\_| \_\____/\____/  \_/   |_| |_|  \__,_|_| |_| |_|\___| \_/\_/ \___/|_|  |_|\_| +""" + +__title__ = 'Django REST framework'  __version__ = '2.3.9' +__author__ = 'Tom Christie' +__license__ = 'BSD 2-Clause' +__copyright__ = 'Copyright 2011-2013 Tom Christie' -VERSION = __version__  # synonym +# Version synonym +VERSION = __version__  # Header encoding (see RFC5987)  HTTP_HEADER_ENCODING = 'iso-8859-1' | 
