diff options
| author | Tom Christie | 2012-09-20 13:06:27 +0100 |
|---|---|---|
| committer | Tom Christie | 2012-09-20 13:06:27 +0100 |
| commit | 4b691c402707775c3048a90531024f3bc5be6f91 (patch) | |
| tree | 3adfc54b0d8b70e4ea78edf7091f7827fa68f47b /setup.py | |
| parent | a1bcfbfe926621820832e32b0427601e1140b4f7 (diff) | |
| download | django-rest-framework-4b691c402707775c3048a90531024f3bc5be6f91.tar.bz2 | |
Change package name: djangorestframework -> rest_framework
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -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', |
