rename setup.py to pysetup.py

to prevent dh_auto_build from automatically detecting setup.py.
This commit is contained in:
Ryo Nakamura
2023-12-10 17:04:55 +09:00
parent 2b71c4bf8c
commit 260e39471d
6 changed files with 5 additions and 5 deletions

View File

@@ -32,5 +32,5 @@ RUN cd ${mscpdir} \
# install mscp python module
RUN cd ${mscpdir} \
&& python3 setup.py install --user
&& python3 pysetup.py install --user

View File

@@ -37,5 +37,5 @@ RUN cd ${mscpdir} \
# install mscp python module
RUN cd ${mscpdir} \
&& python3 setup.py install --user
&& python3 pysetup.py install --user

View File

@@ -31,5 +31,5 @@ RUN cd ${mscpdir} \
# install mscp python module
RUN cd ${mscpdir} \
&& python3 setup.py install --user
&& python3 pysetup.py install --user

View File

@@ -36,4 +36,4 @@ RUN cd ${mscpdir} \
# install mscp python module
RUN cd ${mscpdir} \
&& python3 setup.py install --user
&& python3 pysetup.py install --user

View File

@@ -35,5 +35,5 @@ RUN cd ${mscpdir} \
# install mscp python module
RUN cd ${mscpdir} \
&& python3 setup.py install --user
&& python3 pysetup.py install --user