Kaydet (Commit) 775f4339 authored tarafından Adrian Holovaty's avatar Adrian Holovaty

Moved django.bin.setup to root level and converted it to use setuptools. Still…

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
üst 8acc6048
# 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',
)
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(),
)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment