1 Star 0 Fork 0

Huoty/kodes-py

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 900 Bytes
一键复制 编辑 原始数据 按行查看 历史
Huoty 提交于 2016-11-04 16:49 +08:00 . 日志模块
#############################################################
# Generic Makefile for Python Program
#
# License: GPL (General Public License)
# Author: Huoty <sudohuoty AT gmail DOT com>
# Date: 2016/11/04
#
# Description:
# ------------
# Klib is a utility pyton library
#
# Make Target:
# ------------
# The Makefile provides the following targets to make:
# $ make Preview install package
# $ make install Install package to path
# $ make clean Clean objects and the cache file
# $ make test Run test case by pytest
# $ make publish Publish package
#
#============================================================
default:
pip install --pre -e .
install:
pip install .
clean:
rm -rf *.pyc
rm -rf *.pyo
rm -rf build dist *.egg-info
rm -rf __pycache__
test:
py.test -xvvls tests/
publish:
python setup.py sdist bdist_wheel upload
.PHONY: clean test
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/konghy/kodes-py.git
git@gitee.com:konghy/kodes-py.git
konghy
kodes-py
kodes-py
master

搜索帮助