| 1 |
import ez_setup # From http://peak.telecommunity.com/DevCenter/setuptools |
|---|
| 2 |
ez_setup.use_setuptools() |
|---|
| 3 |
|
|---|
| 4 |
from setuptools import setup, find_packages |
|---|
| 5 |
|
|---|
| 6 |
setup( |
|---|
| 7 |
name = "Django", |
|---|
| 8 |
version = "0.95.3", |
|---|
| 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.', |
|---|
| 13 |
license = 'BSD', |
|---|
| 14 |
packages = find_packages(exclude=['examples', 'examples.*']), |
|---|
| 15 |
package_data = { |
|---|
| 16 |
'': ['*.TXT'], |
|---|
| 17 |
'django.conf': ['locale/ar/LC_MESSAGES/*', |
|---|
| 18 |
'locale/bn/LC_MESSAGES/*', |
|---|
| 19 |
'locale/cs/LC_MESSAGES/*', |
|---|
| 20 |
'locale/cy/LC_MESSAGES/*', |
|---|
| 21 |
'locale/da/LC_MESSAGES/*', |
|---|
| 22 |
'locale/de/LC_MESSAGES/*', |
|---|
| 23 |
'locale/el/LC_MESSAGES/*', |
|---|
| 24 |
'locale/en/LC_MESSAGES/*', |
|---|
| 25 |
'locale/es/LC_MESSAGES/*', |
|---|
| 26 |
'locale/es_AR/LC_MESSAGES/*', |
|---|
| 27 |
'locale/fr/LC_MESSAGES/*', |
|---|
| 28 |
'locale/gl/LC_MESSAGES/*', |
|---|
| 29 |
'locale/hu/LC_MESSAGES/*', |
|---|
| 30 |
'locale/he/LC_MESSAGES/*', |
|---|
| 31 |
'locale/is/LC_MESSAGES/*', |
|---|
| 32 |
'locale/it/LC_MESSAGES/*', |
|---|
| 33 |
'locale/ja/LC_MESSAGES/*', |
|---|
| 34 |
'locale/nl/LC_MESSAGES/*', |
|---|
| 35 |
'locale/no/LC_MESSAGES/*', |
|---|
| 36 |
'locale/pl/LC_MESSAGES/*', |
|---|
| 37 |
'locale/pt_BR/LC_MESSAGES/*', |
|---|
| 38 |
'locale/ro/LC_MESSAGES/*', |
|---|
| 39 |
'locale/ru/LC_MESSAGES/*', |
|---|
| 40 |
'locale/sk/LC_MESSAGES/*', |
|---|
| 41 |
'locale/sl/LC_MESSAGES/*', |
|---|
| 42 |
'locale/sr/LC_MESSAGES/*', |
|---|
| 43 |
'locale/sv/LC_MESSAGES/*', |
|---|
| 44 |
'locale/ta/LC_MESSAGES/*', |
|---|
| 45 |
'locale/uk/LC_MESSAGES/*', |
|---|
| 46 |
'locale/zh_CN/LC_MESSAGES/*', |
|---|
| 47 |
'locale/zh_TW/LC_MESSAGES/*'], |
|---|
| 48 |
'django.contrib.admin': ['templates/admin/*.html', |
|---|
| 49 |
'templates/admin_doc/*.html', |
|---|
| 50 |
'templates/registration/*.html', |
|---|
| 51 |
'templates/widget/*.html', |
|---|
| 52 |
'media/css/*.css', |
|---|
| 53 |
'media/img/admin/*.gif', |
|---|
| 54 |
'media/img/admin/*.png', |
|---|
| 55 |
'media/js/*.js', |
|---|
| 56 |
'media/js/admin/*js'], |
|---|
| 57 |
'django.contrib.comments': ['templates/comments/*.html'], |
|---|
| 58 |
}, |
|---|
| 59 |
scripts = ['django/bin/django-admin.py'], |
|---|
| 60 |
zip_safe = False, |
|---|
| 61 |
) |
|---|