diff --git a/setup.py b/setup.py index 1aa6e1908..e5dc4e0e2 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,8 @@ setup( packages = ['djangorestframework', 'djangorestframework.templatetags', 'djangorestframework.tests', - 'djangorestframework.runtests'], + 'djangorestframework.runtests', + 'djangorestframework.utils'], package_dir={'djangorestframework': 'djangorestframework'}, package_data = {'djangorestframework': ['templates/*', 'static/*']}, test_suite = 'djangorestframework.runtests.runcoverage.main', @@ -31,7 +32,4 @@ setup( ] ) -import os, shutil -shutil.rmtree(os.path.join(os.path.dirname(__file__), 'djangorestframework.egg-info'), True) -