forked from django-haystack/django-haystack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (36 loc) · 1.03 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='django-haystack',
version='2.0.0-beta',
description='Pluggable search for Django.',
author='Daniel Lindsley',
author_email='[email protected]',
long_description=open('README.rst', 'r').read(),
url='http://haystacksearch.org/',
packages=[
'haystack',
'haystack.backends',
'haystack.management',
'haystack.management.commands',
'haystack.templatetags',
'haystack.utils',
],
package_data={
'haystack': [
'templates/panels/*',
'templates/search_configuration/*',
]
},
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',
'Topic :: Utilities'
],
)