Skip to content

Commit

Permalink
Updated setup.py to include locales and *.TXT in package_data. Change…
Browse files Browse the repository at this point in the history
…d version to 0.90.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@1260 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Nov 16, 2005
1 parent 3301999 commit b2424a3
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions setup.py
Expand Up @@ -4,15 +4,35 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages


setup( setup(
name = "django", name = "Django",
version = "1.0.0", version = "0.90",
url = 'http://www.djangoproject.com/', url = 'http://www.djangoproject.com/',
author = 'Lawrence Journal-World', author = 'Lawrence Journal-World',
author_email = 'holovaty@gmail.com', author_email = 'holovaty@gmail.com',
description = 'A high-level Python Web framework that encourages rapid development and clean, pragmatic design.', description = 'A high-level Python Web framework that encourages rapid development and clean, pragmatic design.',
license = 'BSD', license = 'BSD',
packages = find_packages(), packages = find_packages(),
package_data = { package_data = {
'': ['*.TXT'],
'django.conf': ['locale/bn/LC_MESSAGES/*',
'locale/cs/LC_MESSAGES/*',
'locale/cy/LC_MESSAGES/*',
'locale/da/LC_MESSAGES/*',
'locale/de/LC_MESSAGES/*',
'locale/en/LC_MESSAGES/*',
'locale/es/LC_MESSAGES/*',
'locale/fr/LC_MESSAGES/*',
'locale/gl/LC_MESSAGES/*',
'locale/is/LC_MESSAGES/*',
'locale/it/LC_MESSAGES/*',
'locale/no/LC_MESSAGES/*',
'locale/pt_BR/LC_MESSAGES/*',
'locale/ro/LC_MESSAGES/*',
'locale/ru/LC_MESSAGES/*',
'locale/sk/LC_MESSAGES/*',
'locale/sr/LC_MESSAGES/*',
'locale/sv/LC_MESSAGES/*',
'locale/zh_CN/LC_MESSAGES/*'],
'django.contrib.admin': ['templates/admin/*.html', 'templates/admin_doc/*.html', 'django.contrib.admin': ['templates/admin/*.html', 'templates/admin_doc/*.html',
'templates/registration/*.html', 'templates/registration/*.html',
'media/css/*.css', 'media/img/admin/*.gif', 'media/css/*.css', 'media/img/admin/*.gif',
Expand Down

0 comments on commit b2424a3

Please sign in to comment.