Commit 088cb711 authored by Florian Apolloner's avatar Florian Apolloner
Browse files

Fixed #21827 -- Install django-admin and django-admin.py

We need to figure out how to deprecate django-admin.py, but for now this
should do the trick.
parent 8606785f
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -43,8 +43,9 @@ setup(
    license='BSD',
    packages=find_packages(exclude=EXCLUDE_FROM_PACKAGES),
    include_package_data=True,
    scripts=['django/bin/django-admin.py'],
    entry_points={'console_scripts': [
        'django-admin.py = django.core.management:execute_from_command_line',
        'django-admin = django.core.management:execute_from_command_line',
    ]},
    zip_safe=False,
    classifiers=[