File: clean.sh

package info (click to toggle)
getmac 0.9.5-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 976 kB
  • sloc: python: 2,133; sh: 84; makefile: 23
file content (19 lines) | stat: -rw-r--r-- 334 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/env bash

find . -name '*.pyc' -delete
find . -name '*.pyo' -delete
find . -name '__pycache__' -delete
find . -name '*~' -delete

rm -f getmac-*.tar.gz
rm -rf build/
rm -rf dist/
rm -rf deb_dist/
rm -rf *.egg
rm -rf *.egg-info

rm -rf .tox/
rm -rf .pytest_cache/
rm -rf .mypy_cache/
rm -rf htmlcov
rm -f .coverage.coverage