From 7ee9adbe5c03c29cd4a894dd476548f7fe73b5e4 Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Thu, 2 Jun 2011 12:52:23 +0100 Subject: [PATCH] point to django-rest-framework.org as the homepage, point to pypi for downloads --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 2ee0628ca..a47ab80be 100644 --- a/setup.py +++ b/setup.py @@ -12,8 +12,8 @@ VERSION = re.match("__version__ = '([^']+)'", init_py).group(1) setup( name = 'djangorestframework', version = VERSION, - url = 'https://bitbucket.org/tomchristie/django-rest-framework/wiki/Home', - download_url = 'https://bitbucket.org/tomchristie/django-rest-framework/downloads', + url = 'http://django-rest-framework.org', + download_url = 'http://pypi.python.org/pypi/djangorestframework/', license = 'BSD', description = 'A lightweight REST framework for Django.', author = 'Tom Christie',