aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorTom Christie2012-09-20 13:06:27 +0100
committerTom Christie2012-09-20 13:06:27 +0100
commit4b691c402707775c3048a90531024f3bc5be6f91 (patch)
tree3adfc54b0d8b70e4ea78edf7091f7827fa68f47b /setup.py
parenta1bcfbfe926621820832e32b0427601e1140b4f7 (diff)
downloaddjango-rest-framework-4b691c402707775c3048a90531024f3bc5be6f91.tar.bz2
Change package name: djangorestframework -> rest_framework
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/setup.py b/setup.py
index 2efad481..19cf6d4c 100755
--- a/setup.py
+++ b/setup.py
@@ -40,7 +40,7 @@ def get_package_data(package):
return {package: filepaths}
-version = get_version('djangorestframework')
+version = get_version('rest_framework')
if sys.argv[-1] == 'publish':
@@ -52,17 +52,17 @@ if sys.argv[-1] == 'publish':
setup(
- name='djangorestframework',
+ name='rest_framework',
version=version,
url='http://django-rest-framework.org',
- download_url='http://pypi.python.org/pypi/djangorestframework/',
+ download_url='http://pypi.python.org/pypi/rest_framework/',
license='BSD',
description='A lightweight REST framework for Django.',
author='Tom Christie',
author_email='tom@tomchristie.com',
- packages=get_packages('djangorestframework'),
- package_data=get_package_data('djangorestframework'),
- test_suite='djangorestframework.runtests.runcoverage.main',
+ packages=get_packages('rest_framework'),
+ package_data=get_package_data('rest_framework'),
+ test_suite='rest_framework.runtests.runcoverage.main',
install_requires=[],
classifiers=[
'Development Status :: 4 - Beta',