Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

packaging a python application

Tags:

People also ask

Should I package my Python project?

Yes, its a good idea to package projects especially if you want to use them in multiple environments. pip can install a local wheel or archive, a local directory where you've checked out the code, a private web server, one of several version control systems like git.


If I have a python application consisting of multiple files, how can I pack and distribute it? My application has a configuration file which has to filled in by the user. So what is the best way to manage? I guess I am looking for steps similar to configure/make/make install/make documentation that I use on my Linux machine.

Thanks suresh