forked from openedx/edx-search
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·33 lines (31 loc) · 1.01 KB
/
setup.py
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
30
31
32
33
#!/usr/bin/env python
""" Setup to allow pip installs of edx-search module """
from setuptools import setup
setup(
name='edx-search',
version='1.3.0',
description='Search and index routines for index access',
author='edX',
author_email='[email protected]',
url='https://github.com/edx/edx-search',
license='AGPL',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Affero General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.7',
'Framework :: Django',
'Framework :: Django :: 1.8',
'Framework :: Django :: 1.9',
'Framework :: Django :: 1.10',
'Framework :: Django :: 1.11',
],
packages=['search', 'search.tests'],
install_requires=[
"django >= 1.8, < 2.0",
"elasticsearch>=1.0.0,<2.0.0"
]
)