Django

Code

root/django/branches/schema-evolution-ng/setup.py

Revision 4264, 1.8 kB (checked in by adrian, 2 years ago)

Fixed #3203 -- Fixed setup.py bdist_wininst. Thanks for the patch, ymasuda

Line 
1 from distutils.core import setup
2 from distutils.command.install import INSTALL_SCHEMES
3 import os
4 import sys
5
6 # Tell distutils to put the data_files in platform-specific installation
7 # locations. See here for an explanation:
8 # http://groups.google.com/group/comp.lang.python/browse_thread/thread/35ec7b2fed36eaec/2105ee4d9e8042cb
9 for scheme in INSTALL_SCHEMES.values():
10     scheme['data'] = scheme['purelib']
11
12 # Compile the list of packages available, because distutils doesn't have
13 # an easy way to do this.
14 packages, data_files = [], []
15 root_dir = os.path.dirname(__file__)
16 len_root_dir = len(root_dir)
17 django_dir = os.path.join(root_dir, 'django')
18
19 for dirpath, dirnames, filenames in os.walk(django_dir):
20     # Ignore dirnames that start with '.'
21     for i, dirname in enumerate(dirnames):
22         if dirname.startswith('.'): del dirnames[i]
23     if '__init__.py' in filenames:
24         package = dirpath[len_root_dir:].lstrip('/').replace('/', '.')
25         packages.append(package)
26     else:
27         data_files.append([dirpath, [os.path.join(dirpath, f) for f in filenames]])
28
29 # Small hack for working with bdist_wininst.
30 # See http://mail.python.org/pipermail/distutils-sig/2004-August/004134.html
31 if sys.argv[1] == 'bdist_wininst':
32     for file_info in data_files:
33         file_info[0] = '/PURELIB/%s' % file_info[0]
34
35 # Dynamically calculate the version based on django.VERSION.
36 version = "%d.%d-%s" % (__import__('django').VERSION)
37
38 setup(
39     name = "Django",
40     version = version,
41     url = 'http://www.djangoproject.com/',
42     author = 'Lawrence Journal-World',
43     author_email = 'holovaty@gmail.com',
44     description = 'A high-level Python Web framework that encourages rapid development and clean, pragmatic design.',
45     packages = packages,
46     data_files = data_files,
47     scripts = ['django/bin/django-admin.py'],
48 )
Note: See TracBrowser for help on using the browser.