From b86db9cbb152f29d826041c0dc810de71390ff0f Mon Sep 17 00:00:00 2001 From: alaric <alaric@wullerot.ch> Date: Wed, 23 May 2018 11:36:55 +0200 Subject: [PATCH] update setup --- README.md | 4 +++- setup.py | 2 +- tac/__init__.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5a2c9a8..68040f8 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Simple terms and condition notify app ## Install ```shell -$ pip install -e git+https://github.com/rouxcode/django-tac@0.0.4#egg=django-tac +$ pip install -e git+https://github.com/rouxcode/django-tac@0.0.5#egg=django-tac ``` ## Usage @@ -22,6 +22,8 @@ INSTALLED_APPS = ( add the middleware: ```python MIDDLEWARE = [ + '...', + 'django.contrib.sessions.middleware.SessionMiddleware', 'tac.middleware.TACMiddleware', '...' ] diff --git a/setup.py b/setup.py index 62dd6cd..0b82f14 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- from __future__ import unicode_literals from setuptools import setup, find_packages -from admin_sort import __version__ +from tac import __version__ try: from pypandoc import convert diff --git a/tac/__init__.py b/tac/__init__.py index 8c2e621..9e4016a 100644 --- a/tac/__init__.py +++ b/tac/__init__.py @@ -1,5 +1,5 @@ from __future__ import unicode_literals -__version__ = '0.0.4' +__version__ = '0.0.5' default_app_config = 'tac.apps.TACConfig'