Skip to content

Commit

Permalink
Moved django.bin.setup to root level and converted it to use setuptoo…
Browse files Browse the repository at this point in the history
…ls. Still not ready for prime time, though

git-svn-id: http://code.djangoproject.com/svn/django/trunk@65 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
adrianholovaty committed Jul 15, 2005
1 parent 8acc604 commit 775f433
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 11 deletions.
11 changes: 0 additions & 11 deletions django/bin/setup.py

This file was deleted.

15 changes: 15 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
import ez_setup # From http://peak.telecommunity.com/DevCenter/setuptools
ez_setup.use_setuptools()

from setuptools import setup, find_packages

setup(
name = "django",
version = "1.0.0",
url = 'http://www.djangoproject.com/',
author = 'World Online',
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(),
)

0 comments on commit 775f433

Please sign in to comment.