mirror of
https://github.com/dgtlmoon/changedetection.io.git
synced 2026-05-02 07:40:39 +00:00
12 lines
339 B
Makefile
Executable File
12 lines
339 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@ --with python-virtualenv --buildsystem=pybuild
|
|
|
|
PYTHON_VERSION := $(shell py3versions -r '>= 3.10 << 3.13' -i)
|
|
|
|
override_dh_virtualenv:
|
|
dh_virtualenv --sourcedirectory=. \
|
|
--install-suffix='' \
|
|
--requirements=requirements.txt \
|
|
--python=/usr/bin/$(PYTHON_VERSION)
|