Skip to content

Commit

Permalink
Fixed #21827 -- Install django-admin and django-admin.py
Browse files Browse the repository at this point in the history
We need to figure out how to deprecate django-admin.py, but for now this
should do the trick.
  • Loading branch information
apollo13 committed Jan 21, 2014
1 parent 8606785 commit 088cb71
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@
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=[
Expand Down

0 comments on commit 088cb71

Please sign in to comment.