-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
32 lines (31 loc) · 977 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
32
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
setup(
name='queued_search',
version='2.1.0',
description='A queuing setup for integration with Haystack.',
author='Daniel Lindsley',
author_email='[email protected]',
url='http://github.com/toastdriven/queued_search',
packages=[
'queued_search',
'queued_search.management',
'queued_search.management.commands',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Utilities'
],
)