1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
#!/usr/bin/make -f
export DH_VERBOSE = 1
export PYBUILD_NAME=rocketcea
export PYBUILD_AFTER_INSTALL_python3=dh_numpy3
%:
dh $@ --with sphinxdoc --buildsystem=pybuild
execute_after_dh_auto_test:
find . -name separated_Noz.csv -exec rm {} \;
execute_after_dh_auto_build-arch: export http_proxy=127.0.0.1:9
execute_after_dh_auto_build-arch: export https_proxy=127.0.0.1:9
execute_after_dh_auto_build-arch:
PYTHONPATH=. python3 -m sphinx -N -bhtml -d docs/_build/doctrees docs \
docs/_build/html
|