加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 895 Bytes
一键复制 编辑 原始数据 按行查看 历史
Simon Brugman 提交于 2020-05-07 21:54 . Release v2.7.0 (#463)
.PHONY: docs examples
docs:
rm -rf docs/
mkdir docs/
# pdoc3
cp -a ./docsrc/assets/ ./docs/assets/
pdoc3 --html --force --output-dir docs pandas_profiling
mv docs/pandas_profiling/* docs
rmdir docs/pandas_profiling
# sphinx
cd docsrc/ && make github
test:
pytest --black tests/unit/
pytest --black tests/issues/
pytest --nbval tests/notebooks/
flake8 . --select=E9,F63,F7,F82 --show-source --statistics
examples:
find ./examples -maxdepth 2 -type f -name "*.py" -execdir python {} \;
pypi_package:
make install
check-manifest
python setup.py sdist bdist_wheel
twine check dist/*
twine upload --skip-existing dist/*
install:
pip install -e .[notebook,app]
lint:
isort --apply
black .
typing:
pytest --mypy -m mypy .
clean:
git rm --cached `git ls-files -i --exclude-from=.gitignore`
all:
make lint
make install
make examples
make docs
make test
make typing
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化