diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-07-15 20:46:05 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-07-15 20:46:05 +0000 |
| commit | 41c99f35dba0a12c6bbb49ddcaa5fabf90ca6a0f (patch) | |
| tree | 2c28b7e569f9a6cffca3e061d5b0961139120e8b | |
| parent | 604cd7fe14026da97f73fdb47dc48429b001290a (diff) | |
Changed setup.py author and added django-admin to distutils 'scripts'
git-svn-id: http://code.djangoproject.com/svn/django/trunk@68 bcc190cf-cafb-0310-a4f2-bffc1f526a37
| -rw-r--r-- | django/bin/django-admin.py | 2 | ||||
| -rw-r--r-- | setup.py | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/django/bin/django-admin.py b/django/bin/django-admin.py index fefc20b9bd..3bf3501d18 100644 --- a/django/bin/django-admin.py +++ b/django/bin/django-admin.py @@ -1,4 +1,4 @@ -#!/usr/bin/python2.3 +#!/usr/bin/env python from django.core import db, meta import django import os, re, sys @@ -7,9 +7,10 @@ setup( name = "django", version = "1.0.0", url = 'http://www.djangoproject.com/', - author = 'World Online', + author = 'Lawrence Journal-World', author_email = 'holovaty@gmail.com', description = 'A high-level Python Web framework that encourages rapid development and clean, pragmatic design.', license = 'BSD', packages = find_packages(), + scripts = ['django/bin/django-admin.py'], ) |
