forked from mandx/haystack-rqueue
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (29 loc) · 889 Bytes
/
setup.py
File metadata and controls
31 lines (29 loc) · 889 Bytes
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.1-alpha',
description='Delegate object update/deletion to background tasks with RQ (http://python-rq.org)',
author='Armando Pérez',
author_email='gmandx@gmail.com',
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',
],
)