|
| 1 | +import os |
| 2 | +import sys |
| 3 | +import json |
| 4 | + |
| 5 | +from setuptools import setup, find_packages |
| 6 | + |
| 7 | + |
| 8 | +def readme(): |
| 9 | + with open('README.md', encoding='utf-8') as f: |
| 10 | + return f.read() |
| 11 | + |
| 12 | +setup(name='elasticsearch_kernel', |
| 13 | + version='0.1.0', |
| 14 | + description='A elasticsearch kernel for Jupyter.', |
| 15 | + long_description=readme(), |
| 16 | + long_description_content_type='text/markdown', |
| 17 | + url='https://github.com/Hourout/elasticsearch_kernel', |
| 18 | + author='JinQing Lee', |
| 19 | + author_email='hourout@163.com', |
| 20 | + keywords=['jupyter_kernel', 'elasticsearch_kernel'], |
| 21 | + license='Apache License Version 2.0', |
| 22 | + install_requires=['requests', 'pandas', 'jupyter'], |
| 23 | + classifiers = [ |
| 24 | + 'Framework :: IPython', |
| 25 | + 'License :: OSI Approved :: Apache Software License', |
| 26 | + 'Programming Language :: Python :: 3.6', |
| 27 | + 'Programming Language :: Python :: 3.7', |
| 28 | + 'Programming Language :: Python :: 3.8', |
| 29 | + 'Intended Audience :: Developers', |
| 30 | + 'Intended Audience :: Education', |
| 31 | + 'Intended Audience :: Science/Research', |
| 32 | + 'Topic :: Scientific/Engineering', |
| 33 | + 'Topic :: System :: Shells', |
| 34 | + ], |
| 35 | + packages=['elasticsearch_kernel'], |
| 36 | + zip_safe=False |
| 37 | +) |
0 commit comments