X-Git-Url: https://git.mdrn.pl/django-pagination.git/blobdiff_plain/7f5e87b3900b780fce0dcbe9e11e9c191af03571..e5f6a07c729bde884f6de784d925f44fb652acf5:/setup.py diff --git a/setup.py b/setup.py index fd5760c..f5a152d 100755 --- 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, )