mirror of
https://github.com/Hopiu/xapian-haystack.git
synced 2026-03-16 22:20:31 +00:00
33 lines
984 B
Python
33 lines
984 B
Python
# -*- coding: utf-8 -*-
|
|
from __future__ import unicode_literals
|
|
|
|
import os
|
|
from distutils.core import setup
|
|
|
|
|
|
def read(fname):
|
|
return open(os.path.join(os.path.dirname(__file__), fname)).read()
|
|
|
|
setup(
|
|
name='xapian-haystack',
|
|
version='2.1.0',
|
|
description='A Xapian backend for Haystack',
|
|
long_description=read('README.rst'),
|
|
classifiers=[
|
|
'Development Status :: 5 - Production/Stable',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: GNU General Public License (GPL)',
|
|
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
|
|
'Framework :: Django',
|
|
],
|
|
author='Jorge C. Leitão',
|
|
author_email='jorgecarleitao@gmail.com',
|
|
url='http://github.com/notanumber/xapian-haystack',
|
|
download_url='http://github.com/notanumber/xapian-haystack/tarball/2.1.0',
|
|
license='GPL2',
|
|
py_modules=['xapian_backend'],
|
|
install_requires=[
|
|
'django>=1.8',
|
|
'django-haystack>=2.5.1',
|
|
]
|
|
)
|