I have the following structure of packages:
repo  
|__pckg1
    |__settings.txt
    |__create_new_file.py
    |__setup.py
    |__requirements1.txt
|__pckg2
    |__requirements2.txt
Requirements2.txt has: file:../pckg1
create_new_file.py creates new file based on settings.txt It should run before setup.py so the newly created file will be part of the installation. Is it possible to achieve this?
I tried all the options from here but nothing worked
 
    