From 729fc547efe639043461aaf1d369a467400df7cb Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Sun, 17 Jul 2005 17:05:01 +0000 Subject: [PATCH] Changed setup.py to include admin_templates. Thanks for the heads-up, Freewheel and Nicholas Riley! git-svn-id: http://code.djangoproject.com/svn/django/trunk@155 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index ce4624a9f7..1824dfd1ff 100644 --- a/setup.py +++ b/setup.py @@ -12,5 +12,8 @@ setup( description = 'A high-level Python Web framework that encourages rapid development and clean, pragmatic design.', license = 'BSD', packages = find_packages(), + package_data = { + 'django.conf': ['admin_templates/*.html', 'admin_templates/doc/*.html'], + }, scripts = ['django/bin/django-admin.py'], )