-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·44 lines (40 loc) · 1.36 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#!/usr/bin/env python
# coding: utf8
import os
from setuptools import setup
# if there's a converted readme, use it, otherwise fall back to markdown
if os.path.exists('README.rst'):
readme_path = 'README.rst'
else:
readme_path = 'README.md'
setup(
name='django-next-prev',
version='1.1.0',
description='Django utility to retrieve the next or previous object, given a current object and a queryset.',
long_description=open(readme_path).read(),
author='Greg Brown',
author_email='[email protected]',
url='https://github.com/gregplaysguitar/django-next-prev',
packages=[],
license='BSD License',
zip_safe=False,
platforms='any',
install_requires=['Django>=1.8'],
include_package_data=True,
package_data={},
py_modules=['next_prev'],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Framework :: Django',
],
)