File: rules

package info (click to toggle)
poetry-plugin-export 1.9.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 908 kB
  • sloc: python: 4,062; makefile: 6
file content (9 lines) | stat: -rwxr-xr-x 236 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
#! /usr/bin/make -f

export PYBUILD_NAME=poetry-plugin-export
%:
	dh $@ --with python3 --buildsystem=pybuild

override_dh_auto_clean:
	find . -iname '*.pyc' -delete
	for i in $$(find . -type d -iname __pycache__) ; do rm -rf $$i ; done