forked from ydataai/ydata-profiling
-
Notifications
You must be signed in to change notification settings - Fork 0
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
8 changed files
with
67 additions
and
29 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
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 |
---|---|---|
@@ -1,5 +1,23 @@ | ||
# Requirements | ||
include requirements*.txt | ||
|
||
# Include license, Readme, etc. | ||
include LICENSE | ||
include *.md | ||
|
||
# Styles | ||
include src/pandas_profiling/visualisation/*.mplstyle | ||
|
||
# Templates and static resources | ||
recursive-include src/pandas_profiling/report/presentation/flavours/html/templates *.html *.js *.css | ||
|
||
# Configuration | ||
include src/pandas_profiling/*.yaml | ||
include README.md | ||
|
||
# Exclude development, testing and example code | ||
exclude .pre-commit-config.yaml | ||
include Makefile make.bat | ||
exclude docs examples tests | ||
recursive-exclude docs * | ||
recursive-exclude examples * | ||
recursive-exclude tests * |
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
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
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
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 |
---|---|---|
@@ -1,25 +1,25 @@ | ||
scipy>=1.4.1 | ||
pandas==0.25.3 | ||
matplotlib==3.1.3 | ||
confuse==1.0.0 | ||
jinja2==2.11.1 | ||
visions==0.2.3 | ||
pandas>=0.25.3 | ||
matplotlib>=3.1.3 | ||
confuse>=1.0.0 | ||
jinja2>=2.11.1 | ||
visions>=0.2.3 | ||
numpy>=1.16.0 | ||
statsmodels==0.11.1 | ||
statsmodels>=0.11.1 | ||
# Could be optional | ||
# Related to HTML report | ||
htmlmin==0.1.12 | ||
htmlmin>=0.1.12 | ||
# Missing values | ||
missingno==0.4.2 | ||
missingno>=0.4.2 | ||
# Correlations | ||
phik==0.9.10 | ||
phik>=0.9.10 | ||
# Dynamic histograms | ||
astropy==4.0 | ||
astropy>=4.0 | ||
# Text analysis | ||
tangled-up-in-unicode==0.0.4 | ||
tangled-up-in-unicode>=0.0.4 | ||
# Examples | ||
requests==2.23.0 | ||
requests>=2.23.0 | ||
# Progress bar | ||
tqdm==4.43.0 | ||
tqdm>=4.43.0 | ||
# Jupyter notebook | ||
ipywidgets==7.5.1 | ||
ipywidgets>=7.5.1 |
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
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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
"""This file is auto-generated by setup.py, please do not alter.""" | ||
__version__ = "2.5.3" | ||
__version__ = "2.5.4" |