Use test project to run tests
[django-pagination.git] / setup.py
1 #!/usr/bin/env python
2 from setuptools import setup, find_packages
3
4 setup(
5     name='linaro-django-pagination',
6     version=version,
7     description="linaro-django-pagination",
8     long_description=open("README").read(),
9     classifiers=[
10         "Programming Language :: Python",
11         "Topic :: Software Development :: Libraries :: Python Modules",
12         "Framework :: Django",
13         "Environment :: Web Environment",
14     ],
15     keywords='pagination,django',
16     author='Zygmunt Krynicki',
17     author_email='zygmunt.krynicki@linaro.org',
18     url='https://github.com/zyga/django-pagination',
19     test_suite='linaro_django_pagination.test_project.tests.run_tests',
20     license='BSD',
21     packages=find_packages(),
22     install_requires=[
23         'django >= 1.2',
24     ],
25     tests_require=[
26         'django-testproject >= 0.1',
27     ],
28     include_package_data=True,
29     zip_safe=False,
30 )