xapian-haystack/setup.py

34 lines
985 B
Python
Raw Permalink Normal View History

from distutils.core import setup
from pathlib import Path
2015-11-16 14:47:56 +00:00
def read(fname):
return (Path(__file__).parent / fname).read_text(encoding='utf-8')
setup(
name='xapian-haystack',
version='3.1.0',
2015-11-16 14:47:56 +00:00
description='A Xapian backend for Haystack',
long_description=read('README.rst'),
long_description_content_type='text/x-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',
2022-02-05 09:44:12 +00:00
'Programming Language :: Python :: 3 :: Only',
],
2015-11-16 14:47:56 +00:00
author='Jorge C. Leitão',
author_email='jorgecarleitao@gmail.com',
2022-02-05 09:44:12 +00:00
url='https://github.com/notanumber/xapian-haystack',
license='GPL2',
py_modules=['xapian_backend'],
2015-11-16 14:47:56 +00:00
install_requires=[
'django>=3.2',
'django-haystack>=2.8.0',
2022-02-10 19:44:21 +00:00
'filelock>=3.4',
2015-11-16 14:47:56 +00:00
]
)