X-Git-Url: https://git.mdrn.pl/django-pagination.git/blobdiff_plain/1c608e69ecf61484ea1210fe0d6dc8d116c583d3..e5f6a07c729bde884f6de784d925f44fb652acf5:/setup.py diff --git a/setup.py b/setup.py index 7cc67ec..f5a152d 100755 --- a/setup.py +++ b/setup.py @@ -16,8 +16,15 @@ setup( author='Zygmunt Krynicki', author_email='zygmunt.krynicki@linaro.org', 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, )