From 41c99f35dba0a12c6bbb49ddcaa5fabf90ca6a0f Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 15 Jul 2005 20:46:05 +0000 Subject: [PATCH] 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 --- django/bin/django-admin.py | 2 +- 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 diff --git a/setup.py b/setup.py index 959943e943..ce4624a9f7 100644 --- a/setup.py +++ b/setup.py @@ -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'], )