mirror of
https://github.com/microsoft/LLMLingua.git
synced 2024-01-23 02:05:46 +03:00
15 lines
273 B
Makefile
15 lines
273 B
Makefile
.PHONY: install style_check_on_modified style
|
|
|
|
export PYTHONPATH = src
|
|
|
|
PYTHON := python3
|
|
CHECK_DIRS := llmlingua
|
|
|
|
install:
|
|
@${PYTHON} setup.py bdist_wheel
|
|
@${PYTHON} -m pip install dist/sdtools*
|
|
|
|
style:
|
|
black $(CHECK_DIRS)
|
|
isort -rc $(CHECK_DIRS)
|
|
flake8 $(CHECK_DIRS)
|