-
Notifications
You must be signed in to change notification settings - Fork 13
/
setup.py
31 lines (29 loc) · 887 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='django-haystack-rqueue',
version='0.2-alpha',
description='Delegate object update/deletion to background tasks with RQ (http://python-rq.org)',
author='Armando Pérez',
author_email='[email protected]',
url='http://github.com/mandx/haystack-rqueue',
install_requires=[
'django-haystack>=2.4',
'django-rq>=0.5.1',
],
packages=[
'haystack_rqueue',
],
classifiers=[
'Development Status :: 1 - Alpha',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Search',
'Topic :: Utilities',
],
)