mirror of
https://github.com/PyMySQL/mysqlclient.git
synced 2026-03-13 08:00:02 +08:00
22 lines
310 B
Makefile
22 lines
310 B
Makefile
.PHONY: build
|
|
build:
|
|
python setup.py build_ext -if
|
|
|
|
.PHONY: doc
|
|
doc:
|
|
pip install .
|
|
pip install sphinx
|
|
cd doc && make html
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
python setup.py clean
|
|
find . -name '*.pyc' -delete
|
|
find . -name '__pycache__' -delete
|
|
rm -rf build
|
|
|
|
.PHONY: check
|
|
check:
|
|
ruff *.py src ci
|
|
black *.py src ci
|