diff options
| author | Tom Christie | 2011-05-16 16:00:00 +0100 |
|---|---|---|
| committer | Tom Christie | 2011-05-16 16:00:00 +0100 |
| commit | 3470134373658f4f332d6b6fba038ef7b43bbf9f (patch) | |
| tree | ca3491507c78e67d5a2c8f09738d914283e6c791 /setup.py | |
| parent | 75cc1eb2a85c2e8ef872566c0b798c6526a23cb3 (diff) | |
| download | django-rest-framework-3470134373658f4f332d6b6fba038ef7b43bbf9f.tar.bz2 | |
Add utils to setup.py - see if the examples tests now pass
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -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) - |
