forked from sicarrots/elasticdata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 908 Bytes
/
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
# -*- coding: utf-8 -*-
from __future__ import unicode_literals
from setuptools import setup
setup(
name='elasticdata',
version='0.0.1-pre',
url='http://karolsikora.me/elasticdata',
author='Karol Sikora',
author_email='[email protected]',
description='A high level framework to manage data stored in elasticsearch.',
license='BSD',
packages=['elasticdata'],
install_requires=[
'Django>=1.6.7,<1.7',
'elasticsearch>=1.0.0,<2.0.0',
'six',
'inflection'
],
test_requires=['mock'],
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Topic :: Software Development :: Libraries :: Python Modules',
],
test_suite='tests'
)