diff --git a/setup.py b/setup.py
index 333d57a..bb91240 100644
a
|
b
|
for dirpath, dirnames, filenames in os.walk(django_dir):
|
76 | 76 | elif filenames: |
77 | 77 | data_files.append([dirpath, [os.path.join(dirpath, f) for f in filenames]]) |
78 | 78 | |
| 79 | # Adding the extras package so that we can get the django_bash_completion script |
| 80 | packages.append('extras') |
| 81 | |
79 | 82 | # Small hack for working with bdist_wininst. |
80 | 83 | # See http://mail.python.org/pipermail/distutils-sig/2004-August/004134.html |
81 | 84 | if len(sys.argv) > 1 and sys.argv[1] == 'bdist_wininst': |
… |
… |
setup(
|
96 | 99 | packages = packages, |
97 | 100 | cmdclass = cmdclasses, |
98 | 101 | data_files = data_files, |
99 | | scripts = ['django/bin/django-admin.py'], |
| 102 | scripts = ['django/bin/django-admin.py', 'extras/django_bash_completion'], |
100 | 103 | classifiers = [ |
101 | 104 | 'Development Status :: 5 - Production/Stable', |
102 | 105 | 'Environment :: Web Environment', |