Re: [BangPypers] Packaging in Python

2014-01-13 Thread Vishal
Hello, We have tried the following in the past and seemed to work ok...with some work though. See if it fits you. 1) Use bbfreeze to freeze all your dependencies in one folder 2) Use InnoSetup to create a setup 3) distribute the setup. This will create a single installable distribution for your

Re: [BangPypers] Packaging in Python

2014-01-11 Thread Saager Mhatre
On Jan 10, 2014 4:26 AM, "Venu Murthy" wrote: > > Hello friend! > > This was the first time, we are actually writing some serious code and it > found it quite not like Python when packing for the code to be deployed on > a windows machine. > > We were using the setuptools build and install to do t

Re: [BangPypers] Packaging in Python

2014-01-09 Thread Noufal Ibrahim KV
On Thu, Jan 09 2014, Venu Murthy wrote: > Hello friend! > > This was the first time, we are actually writing some serious code and it > found it quite not like Python when packing for the code to be deployed on > a windows machine. > > We were using the setuptools build and install to do this... a

[BangPypers] Packaging in Python

2014-01-09 Thread Venu Murthy
Hello friend! This was the first time, we are actually writing some serious code and it found it quite not like Python when packing for the code to be deployed on a windows machine. We were using the setuptools build and install to do this... and it wasn't easy and finally had to install PIP on o