1 import ez_setup
# From http://peak.telecommunity.com/DevCenter/setuptools
2 ez_setup
.use_setuptools()
4 from setuptools
import setup
, find_packages
9 url
= 'http://www.djangoproject.com/',
10 author
= 'Lawrence Journal-World',
11 author_email
= 'holovaty@gmail.com',
12 description
= 'A high-level Python Web framework that encourages rapid development and clean, pragmatic design.',
14 packages
= find_packages(),
17 'django.conf': ['locale/bn/LC_MESSAGES/*',
18 'locale/cs/LC_MESSAGES/*',
19 'locale/cy/LC_MESSAGES/*',
20 'locale/da/LC_MESSAGES/*',
21 'locale/de/LC_MESSAGES/*',
22 'locale/en/LC_MESSAGES/*',
23 'locale/es/LC_MESSAGES/*',
24 'locale/fr/LC_MESSAGES/*',
25 'locale/gl/LC_MESSAGES/*',
26 'locale/is/LC_MESSAGES/*',
27 'locale/it/LC_MESSAGES/*',
28 'locale/no/LC_MESSAGES/*',
29 'locale/pt_BR/LC_MESSAGES/*',
30 'locale/ro/LC_MESSAGES/*',
31 'locale/ru/LC_MESSAGES/*',
32 'locale/sk/LC_MESSAGES/*',
33 'locale/sr/LC_MESSAGES/*',
34 'locale/sv/LC_MESSAGES/*',
35 'locale/zh_CN/LC_MESSAGES/*'],
36 'django.contrib.admin': ['templates/admin/*.html',
37 'templates/admin_doc/*.html',
38 'templates/registration/*.html',
39 'templates/widget/*.html',
41 'media/img/admin/*.gif',
42 'media/img/admin/*.png',
44 'media/js/admin/*js'],
46 scripts
= ['django/bin/django-admin.py'],