forked from graphaelli/ipython-elasticsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (29 loc) · 977 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
32
33
from setuptools import setup, find_packages
version = '0.2.2'
install_requires = [
'requests',
]
setup(name='ipython-elasticsearch',
version=version,
description="Elasticearch access via IPython",
long_description="Elasticearch access via IPython",
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'License :: OSI Approved :: MIT License',
'Topic :: Database',
'Topic :: Database :: Front-Ends',
'Programming Language :: Python :: 3',
],
keywords='database ipython elasticsearch',
author='Gilad Raphaelli',
author_email='[email protected]',
url='https://pypi.python.org/pypi/ipython-elasticsearch',
license='MIT',
packages=find_packages('src'),
package_dir = {'': 'src'},
include_package_data=True,
zip_safe=False,
install_requires=install_requires,
tests_require=['nose', 'responses'],
)