Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
arunnbaba authored May 25, 2020
1 parent b558050 commit e82bbdc
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 0 deletions.
3 changes: 3 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
include pandas_ui\*.html
include pandas_ui\*.png
include pandas_ui\*.jpg
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Inside of setup.cfg
[metadata]
description-file = README.md
36 changes: 36 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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 = '[email protected]',
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'

],
)

0 comments on commit e82bbdc

Please sign in to comment.