diff options
| author | Adrian Holovaty <adrian@holovaty.com> | 2005-07-15 19:49:10 +0000 |
|---|---|---|
| committer | Adrian Holovaty <adrian@holovaty.com> | 2005-07-15 19:49:10 +0000 |
| commit | 775f433988445fe5caa622593f58be14506e3143 (patch) | |
| tree | b8020d9dcc709ea2cc61922311f6cfd3949eec1c /setup.py | |
| parent | 8acc6048e8fe17e1ba7e9df30aace2ef84d68276 (diff) | |
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
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 15 |
1 files changed, 15 insertions, 0 deletions
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(), +) |
