Skip to content

Commit

Permalink
Just use distutils as life is too short. Closes: #2
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Lamb <[email protected]>
  • Loading branch information
lamby committed Sep 19, 2011
1 parent 6415709 commit 958091e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/usr/bin/env python

from setuptools import setup, find_packages
from distutils.core import setup

setup(
name='django-debug-toolbar-user-panel',
Expand All @@ -13,7 +13,9 @@
author_email='[email protected]',
license='BSD',

packages=find_packages(),
packages=(
'debug_toolbar_user_panel',
),
package_data={'': [
'templates/debug_toolbar_user_panel/*',
]},
Expand Down

0 comments on commit 958091e

Please sign in to comment.