Adding pip_clean script
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
-----------------------
|
----------------------
|
||||||
Contributor Guidlines
|
Contributor Guidelines
|
||||||
-----------------------
|
----------------------
|
||||||
|
|
||||||
Before you start
|
Before you start
|
||||||
================
|
================
|
||||||
|
|||||||
9
scripts/pip_clean.sh
Executable file
9
scripts/pip_clean.sh
Executable file
@@ -0,0 +1,9 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
# Removes any lingering build/release files from the project directory
|
||||||
|
|
||||||
|
find . -type f -name '*.pyc' -delete
|
||||||
|
find . -type f -name '*.pyo' -delete
|
||||||
|
find . -type d -name '__pycache__' -delete
|
||||||
|
find . -type d -name 'build' -delete
|
||||||
|
find . -type d -name 'dist' -delete
|
||||||
|
find . -type d -name '*.egg-info' -delete
|
||||||
Reference in New Issue
Block a user