1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
#! /usr/bin/make -f
export PYBUILD_NAME=attr
export PYBUILD_BEFORE_TEST=cp conftest.py {build_dir}
export PYBUILD_AFTER_TEST=rm -r {build_dir}/.hypothesis {build_dir}/conftest.py
%:
dh $@ --with python3,sphinxdoc --buildsystem=pybuild
override_dh_auto_clean:
dh_auto_clean
rm -rf .pytest_cache
rm -rf src/attrs.egg-info
override_dh_auto_build:
dh_auto_build
PYTHONPATH=$(shell pybuild --print build_dir --interpreter python3) \
http_proxy='127.0.0.1:9' \
https_proxy='127.0.0.1:9' \
python3 -m sphinx -N -b html docs/ $(CURDIR)/.pybuild/docs/html/
override_dh_compress:
dh_compress -Xchangelog.html
|