Fixed bug introduced with python2.3 compatability. Also, renamed the PyPI package...
[django-pagination.git] / setup.py
1 from setuptools import setup, find_packages
2
3 version = '1.0.4'
4
5 LONG_DESCRIPTION = """
6 How to use django-pagination
7 ----------------------------
8
9 ``django-pagination`` allows for easy Digg-style pagination without modifying
10 your views.
11
12 There are really 5 steps to setting it up with your projects (not including 
13 installation, which is covered in INSTALL.txt in this same directory.)
14
15 1. List this application in the ``INSTALLED_APPS`` portion of your settings
16    file.  Your settings file might look something like::
17    
18        INSTALLED_APPS = (
19            # ...
20            'pagination',
21        )
22
23
24 2. Install the pagination middleware.  Your settings file might look something
25    like::
26    
27        MIDDLEWARE_CLASSES = (
28            # ...
29            'pagination.middleware.PaginationMiddleware',
30        )
31
32 3. If it's not already added in your setup, add the request context processor.
33    Note that context processors are set by default implicitly, so to set them
34    explicitly, you need to copy and paste this code into your under
35    the value TEMPLATE_CONTEXT_PROCESSORS::
36    
37         ("django.core.context_processors.auth",
38         "django.core.context_processors.debug",
39         "django.core.context_processors.i18n",
40         "django.core.context_processors.media",
41         "django.core.context_processors.request")
42
43 4. Add this line at the top of your template to load the pagination tags:
44
45        {% load pagination_tags %}
46
47
48 5. Decide on a variable that you would like to paginate, and use the
49    autopaginate tag on that variable before iterating over it.  This could 
50    take one of two forms (using the canonical ``object_list`` as an example
51    variable):
52    
53        {% autopaginate object_list %}
54        
55    This assumes that you would like to have the default 20 results per page.
56    If you would like to specify your own amount of results per page, you can
57    specify that like so:
58    
59        {% autopaginate object_list 10 %}
60    
61    Note that this replaces ``object_list`` with the list for the current page, so
62    you can iterate over the ``object_list`` like you normally would.
63    
64
65 6. Now you want to display the current page and the available pages, so
66    somewhere after having used autopaginate, use the paginate inclusion tag:
67    
68        {% paginate %}
69    
70    This does not take any arguments, but does assume that you have already
71    called autopaginate, so make sure to do so first.
72
73
74 That's it!  You have now paginated ``object_list`` and given users of the site
75 a way to navigate between the different pages--all without touching your views.
76 """
77
78 setup(
79     name='django-pagination',
80     version=version,
81     description="django-pagination",
82     long_description=LONG_DESCRIPTION,
83     classifiers=[
84         "Programming Language :: Python",
85         "Topic :: Software Development :: Libraries :: Python Modules",
86         "Framework :: Django",
87         "Environment :: Web Environment",
88     ],
89     keywords='pagination,django',
90     author='Eric Florenzano',
91     author_email='floguy@gmail.com',
92     url='http://django-pagination.googlecode.com/',
93     license='BSD',
94     packages=find_packages(),
95     include_package_data=True,
96     zip_safe=False,
97     install_requires=['setuptools'],
98 )