mirror of
https://github.com/elastic/eland.git
synced 2025-07-11 00:02:14 +08:00
* Added example notebooks + pytest for these notebooks1 * Fixed paths * Fixing link in docs * Minor update for pandas 0.25.3 * Updates for pandas 0.25.3 * Fixing doc links with pandas 0.25.3 update. * Reverting overwrite to changes to notebooks.
53 lines
1.7 KiB
Python
53 lines
1.7 KiB
Python
# Copyright 2019 Elasticsearch BV
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
from setuptools import setup, find_packages
|
|
from codecs import open
|
|
from os import path
|
|
|
|
here = path.abspath(path.dirname(__file__))
|
|
|
|
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
|
|
long_description = f.read()
|
|
|
|
here = path.abspath(path.dirname(__file__))
|
|
about = {}
|
|
with open(path.join(here, 'eland', '__version__.py'), 'r', 'utf-8') as f:
|
|
exec(f.read(), about)
|
|
|
|
setup(
|
|
name=about['__title__'],
|
|
version=about['__version__'],
|
|
description=about['__description__'],
|
|
long_description=long_description,
|
|
long_description_content_type='text/markdown',
|
|
url=about['__url__'],
|
|
maintainer=about['__maintainer__'],
|
|
maintainer_email=about['__maintainer_email__'],
|
|
license='Apache 2.0',
|
|
classifiers=[
|
|
'Development Status :: 3 - Alpha',
|
|
'Intended Audience :: Developers',
|
|
'License :: OSI Approved :: Apache Software License',
|
|
'Programming Language :: Python :: 3.7',
|
|
],
|
|
keywords='elastic eland pandas python',
|
|
packages=['eland'],
|
|
install_requires=[
|
|
'elasticsearch>=7.0.5',
|
|
'pandas==0.25.3',
|
|
'matplotlib'
|
|
]
|
|
)
|