File: clean_up.sh

package info (click to toggle)
python-tld 0.13-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,008 kB
  • sloc: python: 12,972; sh: 119; makefile: 19
file content (21 lines) | stat: -rwxr-xr-x 597 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/usr/bin/env bash
find . -name "*.pyc" -exec rm -rf {} \;
find . -name "__pycache__" -exec rm -rf {} \;
find . -name "*.orig" -exec rm -rf {} \;
find . -name "mprofile_*.dat" -exec rm -rf {} \;
find . -name "profile.cprof" -exec rm -rf {} \;
find . -name "profile.py.lprof" -exec rm -rf {} \;
find . -name "profiler.py.lprof" -exec rm -rf {} \;
find . -name "pycallgraph*.*" -exec rm -rf {} \;

rm -rf .mypy_cache/
rm -rf .pytest_cache/
rm -rf .cache/
rm -rf build/
rm -rf builddocs/
rm -rf dist/
rm -rf dist_py27/
rm -rf dist_py35/
rm -rf deb_dist/
rm src/tld.egg-info -rf
rm builddocs.zip -rf