2009-10-01 16:21:47 +00:00
|
|
|
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',
|
2010-01-27 14:18:42 +00:00
|
|
|
version='1.1.3beta',
|
2009-10-01 16:21:47 +00:00
|
|
|
description="A Xapian backend for Haystack",
|
2010-02-12 15:51:59 +00:00
|
|
|
long_description=read('README.rst'),
|
2009-10-01 16:21:47 +00:00
|
|
|
classifiers=[
|
|
|
|
|
'Development Status :: 4 - Beta',
|
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
|
'License :: OSI Approved :: GNU General Public License (GPL)',
|
|
|
|
|
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
|
|
|
|
|
'Framework :: Django',
|
|
|
|
|
],
|
|
|
|
|
author='David Sauve',
|
2009-12-07 15:23:59 +00:00
|
|
|
author_email='dsauve@trapeze.com',
|
2009-10-01 16:21:47 +00:00
|
|
|
url='http://github.com/notanumber/xapian-haystack',
|
2009-12-07 15:23:59 +00:00
|
|
|
license='GPL3',
|
2009-10-01 16:21:47 +00:00
|
|
|
py_modules=['xapian_backend'],
|
|
|
|
|
)
|