blob: ad6e9e4f9bc5979857380036a1e9bd69c1d8f9fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#! /usr/bin/make -f
export PYBUILD_NAME=ruamel.yaml
export PYBUILD_INSTALL_ARGS=--single-version-externally-managed
export PYBUILD_TEST_ARGS=_test/test_*.py
%:
dh $@ --with python3 --buildsystem=pybuild
# pybuild introduces this file
execute_after_dh_clean:
rm -f pyproject.toml
|