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
This commit is contained in:
parent
8acc6048e8
commit
775f433988
|
@ -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',
|
||||
)
|
|
@ -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(),
|
||||
)
|
Loading…
Reference in New Issue