-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathsetup.py
43 lines (40 loc) · 1.11 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
34
35
36
37
38
39
40
41
42
43
from setuptools import setup
long_description = ''
with open('README.md', 'r') as f:
long_description = f.read()
setup(
name='dask_elk',
version='0.4.0',
description='Dask connection with Elasticsearch',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/avlahop/dask-elk',
maintainer='Apostolos Vlachopoulos',
maintainer_email='[email protected]',
keywords='elasticsearch dask parallel',
licence='GPLv3',
classifiers=[
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
'Development Status :: 4 - Beta',
'License :: OSI Approved :: GNU General Public License (GPL)',
],
packages=[
'dask_elk',
'dask_elk.elk_entities',
],
python_requires=">=2.7",
install_requires=[
'dask[complete]',
'elasticsearch>=6.2',
'pandas>=0.19.0',
],
tests_require=[
'mock',
'nose',
],
test_suite='nose.collector',
project_urls = {
'Documentation': 'https://dask-elk.readthedocs.io'
}
)