-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Inside of setup.cfg | ||
[metadata] | ||
description-file = README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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' | ||
|
||
], | ||
) |