From 775f433988445fe5caa622593f58be14506e3143 Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 15 Jul 2005 19:49:10 +0000 Subject: [PATCH] Moved django.bin.setup to root level and converted it to use setuptools. Still not ready for prime time, though git-svn-id: http://code.djangoproject.com/svn/django/trunk@65 bcc190cf-cafb-0310-a4f2-bffc1f526a37 --- django/bin/setup.py | 11 ----------- setup.py | 15 +++++++++++++++ 2 files changed, 15 insertions(+), 11 deletions(-) delete mode 100644 django/bin/setup.py create mode 100644 setup.py diff --git a/django/bin/setup.py b/django/bin/setup.py deleted file mode 100644 index 3b3ceb4c33..0000000000 --- a/django/bin/setup.py +++ /dev/null @@ -1,11 +0,0 @@ -# This doesn't work yet. - -from distutils.core import setup - -setup( - name = 'django', - version = '1.0.0', - url = 'http://www.djangoproject.com/', - author = 'World Online', - author_email = 'holovaty@gmail.com', -) diff --git a/setup.py b/setup.py new file mode 100644 index 0000000000..959943e943 --- /dev/null +++ b/setup.py @@ -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(), +)