From e82bbdc0f85ee2960622ccb9fa42c3612de90a96 Mon Sep 17 00:00:00 2001 From: Arunn Date: Mon, 25 May 2020 16:00:34 +0530 Subject: [PATCH] Add files via upload --- MANIFEST.in | 3 +++ setup.cfg | 3 +++ setup.py | 36 ++++++++++++++++++++++++++++++++++++ 3 files changed, 42 insertions(+) create mode 100644 MANIFEST.in create mode 100644 setup.cfg create mode 100644 setup.py diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 0000000..a6a237c --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1,3 @@ +include pandas_ui\*.html +include pandas_ui\*.png +include pandas_ui\*.jpg \ No newline at end of file diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..3287428 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,3 @@ +# Inside of setup.cfg +[metadata] +description-file = README.md diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..ca615c4 --- /dev/null +++ b/setup.py @@ -0,0 +1,36 @@ +import pathlib +from setuptools import setup +#from distutils.core import setup +setup( + name = 'pandas_ui', + packages = ['pandas_ui'], + version = '0.1', + license='MIT License', + description = ' pandas_ui helps you wrangle & explore your data and create custom visualizations without digging through StackOverflow. All inside your Jupyter Notebook or JupyterLab ( alternative to Bamboolib ).', + author = 'Arunn Thangavel', + author_email = 'arunnbabainfo@gmail.com', + url = 'https://github.com/arunnbaba/pandas_ui', + download_url = 'https://github.com/arunnbaba/pandas_ui/archive/v1.0.zip', + keywords = ['Pands_ui', 'bamboolib', 'ui for pandas'], + include_package_data=True, + install_requires=[ + 'future', + 'ipywidgets', + 'ipython', + 'pandas', + 'qgrid', + 'traitlets', + 'pandas-profiling', + 'bokeh', + 'plotly', + 'numpy' + ], + classifiers=[ + 'Development Status :: 3 - Alpha', + 'Intended Audience :: Developers', + 'Topic :: Software Development :: Build Tools', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 3.7' + + ], +) \ No newline at end of file