I am thinking of a good way to submit my application, which is a python package. Installing my package is easy to use pythons distutils package.
The problem is with the dependencies my package relies on. If the dependencies are python packages, can I easily handle them using distutils but not python packages? Some of them even need a lot of care when creating and installing them, since special compiler flags must be set, etc.
If I want to automate the installation procedure for a user, what is the best way to do this?
- Writing a make file that downloads and installs dependencies
- Write a script that installs dependencies
- Automation is not the best. just write a guide telling the user how to install Dependencies
- ???
thanks in advance for any reply or suggestion
source
share