1 Star 0 Fork 0

镜像库/wxpusher-sdk-python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Makefile 686 Bytes
一键复制 编辑 原始数据 按行查看 历史
Xuan (Sean) Hu 提交于 2020-02-17 13:56 . Better Topic Message Support. (#3)
.PHONY: clean install lint flake8 pylint test dist upload
PIPENV := $(shell command -v pipenv > /dev/null && echo env)
PIPRUN := $(shell command -v pipenv > /dev/null && echo pipenv run)
clean:
find . -name '*.pyc' -print0 | xargs -0 rm -f
find . -name '*.swp' -print0 | xargs -0 rm -f
find . -name '.DS_Store' -print0 | xargs -0 rm -rf
find . -name '__pycache__' -print0 | xargs -0 rm -rf
-rm -rf build dist *.egg-info
-rm -rf .tox .coverage
install:
pip$(PIPENV) install .
lint: flake8 pylint
flake8:
${PIPRUN} flake8 setup.py wxpusher
pylint:
${PIPRUN} pylint setup.py wxpusher
test:
tox
dist: clean
python setup.py sdist bdist_wheel
upload:
twine upload dist/*
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dlcmirrors/wxpusher-sdk-python.git
git@gitee.com:dlcmirrors/wxpusher-sdk-python.git
dlcmirrors
wxpusher-sdk-python
wxpusher-sdk-python
master

搜索帮助