aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorTom Christie2011-05-16 16:00:00 +0100
committerTom Christie2011-05-16 16:00:00 +0100
commit3470134373658f4f332d6b6fba038ef7b43bbf9f (patch)
treeca3491507c78e67d5a2c8f09738d914283e6c791 /setup.py
parent75cc1eb2a85c2e8ef872566c0b798c6526a23cb3 (diff)
downloaddjango-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.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/setup.py b/setup.py
index 1aa6e190..e5dc4e0e 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)
-