Skip to content

Commit

Permalink
Corrected installation.
Browse files Browse the repository at this point in the history
By adding manifest and correcting setup.py, now both panels modules and templates get installed. Also corrected documentation to include the app so that template loaders can actually find the templates.
  • Loading branch information
rassie committed Aug 1, 2011
1 parent 6e109e3 commit 367128e
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
1 change: 1 addition & 0 deletions MANIFEST.in
@@ -0,0 +1 @@
recursive-include memcache_toolbar/templates *
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -15,7 +15,7 @@ Installation

https://github.com/robhudson/django-debug-toolbar

#. Add the `memcache_toolbar` directory to your Python path.
#. Add the `memcache_toolbar` app to your INSTALLED_APPS.

#. import the panel corresponding to the library you're using

Expand Down
9 changes: 5 additions & 4 deletions setup.py
@@ -1,16 +1,17 @@
#!/usr/bin/env python

from setuptools import setup
from setuptools import setup, find_packages

setup(
name='memcache_toolbar',
version='0.5.1',
version='0.5.2',
description='',
author='Ross McFarland',
author_email='rwmcfa1@neces.com',
url='http://github.com/ross/memcache-debug-panel',

packages=['memcache_toolbar'],
packages=find_packages(exclude=('examples', 'examples.demo', 'test')),
provides=['memcache_toolbar'],
requires=['Django', 'debug_toolbar'],
include_package_data=True,
zip_safe=False,
)

0 comments on commit 367128e

Please sign in to comment.