mirror of
https://github.com/nomic-ai/gpt4all.git
synced 2025-09-04 10:04:35 +00:00
transfer python bindings code
This commit is contained in:
16
gpt4all-bindings/python/makefile
Normal file
16
gpt4all-bindings/python/makefile
Normal file
@@ -0,0 +1,16 @@
|
||||
SHELL:=/bin/bash -o pipefail
|
||||
ROOT_DIR:=$(shell dirname $(realpath $(lastword $(MAKEFILE_LIST))))
|
||||
PYTHON:=python3
|
||||
|
||||
venv:
|
||||
if [ ! -d $(ROOT_DIR)/env ]; then $(PYTHON) -m venv $(ROOT_DIR)/env; fi
|
||||
|
||||
documentation:
|
||||
rm -rf ./site && mkdocs build
|
||||
|
||||
wheel:
|
||||
rm -rf dist/ build/ gpt4all/llmodel_DO_NOT_MODIFY; python setup.py bdist_wheel;
|
||||
|
||||
clean:
|
||||
rm -rf {.pytest_cache,env,gpt4all.egg-info}
|
||||
find . | grep -E "(__pycache__|\.pyc|\.pyo$\)" | xargs rm -rf
|
Reference in New Issue
Block a user