Use test project to run tests
[django-pagination.git] / setup.py
index fd5760c..f5a152d 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -15,9 +15,16 @@ setup(
     keywords='pagination,django',
     author='Zygmunt Krynicki',
     author_email='zygmunt.krynicki@linaro.org',
-    url='http://launchpad.net/linaro-django-pagination/',
+    url='https://github.com/zyga/django-pagination',
+    test_suite='linaro_django_pagination.test_project.tests.run_tests',
     license='BSD',
     packages=find_packages(),
+    install_requires=[
+        'django >= 1.2',
+    ],
+    tests_require=[
+        'django-testproject >= 0.1',
+    ],
     include_package_data=True,
     zip_safe=False,
 )