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(), +)