mirror of
https://github.com/autistic-symposium/metaverse-steganography-py.git
synced 2026-01-04 09:15:29 -05:00
14 lines
267 B
Makefile
14 lines
267 B
Makefile
.PHONY: clean install
|
|
|
|
clean:
|
|
@find . -iname '*.py[co]' -delete
|
|
@find . -iname '__pycache__' -delete
|
|
@rm -rf '.pytest_cache'
|
|
@rm -rf dist/
|
|
@rm -rf build/
|
|
@rm -rf *.egg-info
|
|
@rm -rf .tox
|
|
@rm -rf venv/lib/python*/site-packages/*.egg
|
|
|
|
install:
|
|
pipenv install
|