From ed114e15106192b22ebb78ef5bf5bce72b419d13 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Wed, 13 Jul 2005 01:25:57 +0000 Subject: Imported Django from private SVN repository (created from r. 8825) git-svn-id: http://code.djangoproject.com/svn/django/trunk@3 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/bin/setup.py | 45 +++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 django/bin/setup.py (limited to 'django/bin/setup.py') diff --git a/django/bin/setup.py b/django/bin/setup.py new file mode 100644 index 0000000000..086be541a0 --- /dev/null +++ b/django/bin/setup.py @@ -0,0 +1,45 @@ +""" +Usage: + +python setup.py bdist +python setup.py sdist +""" + +from distutils.core import setup +import os + +# Whether to include the .py files, rather than just .pyc's. Doesn't do anything yet. +INCLUDE_SOURCE = True + +# Determines which apps are bundled with the distribution. +INSTALLED_APPS = ('auth', 'categories', 'comments', 'core', 'media', 'news', 'polls', 'registration', 'search', 'sms', 'staff') + +# First, lump together all the generic, core packages that need to be included. +packages = [ + 'django', + 'django.core', + 'django.templatetags', + 'django.utils', + 'django.views', +] +for a in INSTALLED_APPS: + for dirname in ('parts', 'templatetags', 'views'): + if os.path.exists('django/%s/%s/' % (dirname, a)): + packages.append('django.%s.%s' % (dirname, a)) + +# Next, add individual modules. +py_modules = [ + 'django.cron.daily_cleanup', + 'django.cron.search_indexer', +] +py_modules += ['django.models.%s' % a for a in INSTALLED_APPS] + +setup( + name = 'django', + version = '1.0', + packages = packages, + py_modules = py_modules, + url = 'http://www.ljworld.com/', + author = 'World Online', + author_email = 'cms-support@ljworld.com', +) -- cgit v1.3