加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Makefile 593 Bytes
一键复制 编辑 原始数据 按行查看 历史
nemo2011 提交于 2023-01-07 10:33 . fix: MakeFile
.PHONY: build clean docs install lint onlinedocs test
PYTHON=python3
RM=rm -f -v
PIP=pip3
NPM=npm
bdist:
$(PYTHON) setup.py bdist_wheel
build:
$(PIP) install wheel
$(PYTHON) setup.py sdist bdist_wheel
clean:
find . -type f -name *.pyc -delete
find . -type d -name __pycache__ -delete
docs:
cd docs;$(NPM) run localhost
install:
$(PIP) install -r requirements.txt
$(PYTHON) setup.py install
lint:
$(PYTHON) scripts/lint.py
onlinedocs:
$(PYTHON) -m bilibili_api.tools.opendocs
sdist:
$(PYTHON) setup.py sdist
test:
$(PYTHON) -m tests -a
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化