#!/usr/bin/make -f
#
# Univention Asgi Correlation ID
#  rules file for the debian package
#
# Like what you see? Join us!
# https://www.univention.com/about-us/careers/vacancies/
#
# SPDX-FileCopyrightText: 2025 Univention GmbH
# SPDX-License-Identifier: AGPL-3.0-only

export DH_VERBOSE=1
export PYBUILD_NAME=python3-asgi-correlation-id

%:
	dh $@ --buildsystem=pybuild

override_dh_install:
	dh_install

	find debian/$(PYBUILD_NAME) -type d -name '__pycache__' -exec rm -rf {} +
	# find debian/$(PYBUILD_NAME) -type d -name '*.dist-info' -exec rm -rf {} +

