forked from vrcmarcos/elasticmock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (27 loc) · 808 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
__version__ = '1.3.2'
setup(
name='ElasticMock',
version=__version__,
url='https://github.com/vrcmarcos/elasticmock',
license='MIT',
author='Marcos Cardoso',
author_email='[email protected]',
description='Python Elasticsearch Mock for test purposes',
packages=find_packages(),
zip_safe=False,
include_package_data=True,
platforms='any',
install_requires=[
'elasticsearch<=1.9.0',
'mock<=1.0.1'
],
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)