1 Star 0 Fork 0

mirrors_gis/xyz-spaces-python

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 1.41 KB
一键复制 编辑 原始数据 按行查看 历史
Kharude, Sachin 提交于 2020-08-21 23:11 +08:00 . removed md files under changes
.PHONY: all build install typing lint test
all: black build install typing lint test
black:
black -l 79 xyzspaces tests
isort --atomic .
build:
python3 -m pip install -r requirements.txt
clean: clean-build clean-pyc clean-test ## remove all build, test, coverage and Python artifacts
clean-build: ## remove build artifacts
rm -fr build/
rm -fr dist/
rm -fr .eggs/
find . -name '*.egg-info' -exec rm -fr {} +
find . -name '*.egg' -exec rm -f {} +
clean-pyc: ## remove Python file artifacts
find . -name '*.pyc' -exec rm -f {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
find . -name '__pycache__' -exec rm -fr {} +
clean-test: ## remove test and coverage artifacts
rm -fr .tox/
rm -f .coverage
rm -fr htmlcov/
rm -fr .mypy_cache
rm -fr .pytest_cache
find . -name '.ipynb_checkpoints' -exec rm -fr {} +
rm -f xyz.log
dockerize:
jupyter-repo2docker --user-id 1000 --env XYZ_TOKEN=${XYZ_TOKEN} .
install:
python3 -m pip install -e .
typing:
pytest -v -s --mypy xyzspaces
lint:
isort --check --diff xyzspaces tests
flake8 -v --statistics --count .
black -l 79 --diff --check xyzspaces tests
test:
pytest -v -s --durations=10 --cov=xyzspaces tests
coverage html
draft_changelog:
proclamation draft $(shell python -c "import xyzspaces; print(xyzspaces.__version__)")
build_changelog:
proclamation build -d -o $(shell python -c "import xyzspaces; print(xyzspaces.__version__)")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors-gis/xyz-spaces-python.git
git@gitee.com:mirrors-gis/xyz-spaces-python.git
mirrors-gis
xyz-spaces-python
xyz-spaces-python
master

搜索帮助