-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
23 lines (21 loc) · 796 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
from setuptools import setup
import setuptools
with open("README.rst", "r") as fh:
long_description = fh.read()
setup(name='elasticsearch-service',
version='0.21',
description='easy access to elastic based on elasticsearch-dsl',
url='https://github.com/bertrandchevrier/elasticsearch-service.git',
author='The data handyman team',
author_email='chevrierbertrand@yahoo.fr',
license='MIT',
classifiers=['Development Status :: 3 - Alpha'],
long_description=long_description,
# long_description_content_type="text/markdown",
packages=['elasticsearch_service'],
install_requires=[
'elasticsearch','elasticsearch-dsl','pandas'
],
include_package_data=True,
zip_safe=False,
python_requires='>=3.5')