I have a python project in which I have a main script (main_script.py) that uses other python modules created by me also (IMAP_conn.py, SMTP_conn.py, MySQL.py and data.py). I want create a setup file or a installation package so that can install my modules and my main script.
I have tried using setuptools which is very helpfull but i can inly install each module one by one and then have to install the main script.
I expect to create a installation package or a setup.py file that installs all my own modules and then install the main script.