eland/setup.py
Stephen Dodson 8b3c66a5c8 Changing LICENSE to Apache2
Changing LICENSE to Apache2 + cleaning up setup.py
2019-11-14 09:27:44 +00:00

38 lines
1.1 KiB
Python

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 :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.7',
],
keywords='elastic eland pandas python',
install_requires=[
'elasticsearch>=7.0.5',
'pandas==0.25.1',
'matplotlib'
]
)