diff options
| author | Tom Christie | 2012-02-07 10:14:34 +0000 |
|---|---|---|
| committer | Tom Christie | 2012-02-07 10:14:34 +0000 |
| commit | 6207791af1702ec4a80d689b39ca4e4d1c9d8157 (patch) | |
| tree | 8bef0b35ffa0e46de8726c792b95919d3e858e29 /setup.py | |
| parent | 8c1e6beb85c55d6327a582fd87f60c92419a2697 (diff) | |
| download | django-rest-framework-6207791af1702ec4a80d689b39ca4e4d1c9d8157.tar.bz2 | |
Attempt to stop banging head against brick wall.
Diffstat (limited to 'setup.py')
| -rwxr-xr-x | setup.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- -from distutils.core import setup +from setuptools import setup import re import os import sys @@ -62,7 +62,8 @@ setup( author_email='tom@tomchristie.com', packages=get_packages('djangorestframework'), package_data=get_package_data('djangorestframework'), - requires=['URLObject (>=0.6.0)'], + test_suite='djangorestframework.runtests.runcoverage.main', + install_requires=['URLObject>=0.6.0'], classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', |
