-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·29 lines (26 loc) · 1.05 KB
/
setup.py
File metadata and controls
executable file
·29 lines (26 loc) · 1.05 KB
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
# -*- coding: utf-8 -*-
#
# Copyright (C) Pootle contributors.
#
# This file is a part of the Pootle project. It is distributed under the GPL3
# or later license. See the LICENSE file for a copy of the license and the
# AUTHORS file for copyright and authorship information.
from setuptools import setup, find_packages
setup(
name='pootle_index',
version='0.0.1',
description='Pootle haystack search integration',
long_description="Integration between Pootle and haystack backends",
url='https://github.com/translate/pootle_index',
author='Ryan Northey',
author_email='ryan@synca.io',
license='GPL3',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Build Tools',
'License :: OSI Approved :: GPL3',
'Programming Language :: Python :: 2.7'],
keywords='pootle index search elasticsearch haystack',
packages=find_packages(exclude=['contrib', 'docs', 'tests*']),
install_requires=['django-haystack==2.4.1', 'pootle'])