Skip to content

Commit

Permalink
Final tweaking for the 0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
bkonkle committed Oct 4, 2012
1 parent e674eb1 commit 0ccc51d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 9 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
build/
env/
dist/
*.egg-info
*.pyc
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1 +1 @@
recursive-include cache_panel/templates *recursive-include cache_panel/static *
recursive-include cache_panel/templates *
11 changes: 6 additions & 5 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ of this project come from. The generic cache wrapper is modified from the
`django-debug-cache-panel <https://github.com/jbalogh/django-debug-cache-panel>`_
project by Jeff Balogh.

It's been tested with Django 1.4 and Django Debug Toolbar 0.9.4 using the
python-memcached backend. If you've tried it out with other configurations,
please let me know!

What's Changed?
===============

Expand All @@ -23,10 +27,7 @@ requirement for the panel to be imported in settings has been removed.
Installation
============

#. `Install and configure <https://github.com/django-debug-toolbar/django-debug-toolbar#installation>`_ `Django Debug Toolbar <https://github.com/django-debug-toolbar/django-debug-toolbar>`_.
#. Install django-cache-panel:

pip install -e git+https://github.com/lincolnloop/django-cache-panel.git#egg=django-cache-panel

#. Install and configure `Django Debug Toolbar <https://github.com/django-debug-toolbar/django-debug-toolbar>`_.
#. ``pip install django-cache-panel``
#. Add ``cache_panel`` app to your ``INSTALLED_APPS``.
#. Add ``cache_panel.panel.CacheDebugPanel`` to ``DEBUG_TOOLBAR_PANELS``.
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
from setuptools import setup, find_packages

setup(
name='cache_panel',
name='django-cache-panel',
version='0.1',
description='',
description='A more detailed cache panel for the Django Debug Toolbar',
author='Brandon Konkle',
author_email='brandon@lincolnloop.com',
url='http://github.com/lincolnloop/django-cache-panel',
packages=find_packages(exclude=('examples', 'examples.demo', 'test')),
packages=find_packages(),
provides=['cache_panel'],
requires=['Django', 'debug_toolbar'],
include_package_data=True,
Expand Down

0 comments on commit 0ccc51d

Please sign in to comment.