xapian-haystack/setup.py

34 lines
980 B
Python
Raw Normal View History

2015-11-16 14:47:56 +00:00
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
import os
from distutils.core import setup
2015-11-16 14:47:56 +00:00
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name='xapian-haystack',
version='2.0.0',
2015-11-16 14:47:56 +00:00
description='A Xapian backend for Haystack',
long_description=read('README.rst'),
classifiers=[
2015-11-16 14:47:56 +00:00
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: Internet :: WWW/HTTP :: Indexing/Search',
'Framework :: Django',
],
2015-11-16 14:47:56 +00:00
author='Jorge C. Leitão',
author_email='jorgecarleitao@gmail.com',
url='http://github.com/notanumber/xapian-haystack',
2015-11-16 14:47:56 +00:00
download_url='http://github.com/notanumber/xapian-haystack/tarball/2.0.0',
license='GPL2',
py_modules=['xapian_backend'],
2015-11-16 14:47:56 +00:00
install_requires=[
'django>=1.8',
2015-11-16 14:47:56 +00:00
'django-haystack>=2',
]
)