Skip to content

Commit

Permalink
update setup
Browse files Browse the repository at this point in the history
  • Loading branch information
wullerot committed May 23, 2018
1 parent abc31f7 commit b86db9c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Simple terms and condition notify app

## Install
```shell
$ pip install -e git+https://github.com/rouxcode/[email protected].4#egg=django-tac
$ pip install -e git+https://github.com/rouxcode/[email protected].5#egg=django-tac
```

## Usage
Expand All @@ -22,6 +22,8 @@ INSTALLED_APPS = (
add the middleware:
```python
MIDDLEWARE = [
'...',
'django.contrib.sessions.middleware.SessionMiddleware',
'tac.middleware.TACMiddleware',
'...'
]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion tac/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from __future__ import unicode_literals


__version__ = '0.0.4'
__version__ = '0.0.5'
default_app_config = 'tac.apps.TACConfig'

0 comments on commit b86db9c

Please sign in to comment.