Re: [PyInstaller] Examples of projects using PyInstaller

2016-01-31 Thread Nicholas Chammas
Yes, mostly: write a hook file for your project that defines the appropriate datas, then pass the path to your hook file on the command line. Ah, good idea. OK, I went ahead and did that . Now to make sure Travis uploads the package to S3 correct

Re: [PyInstaller] Examples of projects using PyInstaller

2016-01-29 Thread Jones, Bryan
A few ideas on how to do this: > Hmm, is there a way to capture data file requirements as command-line options? Yes, mostly: write a hook file for your project that defines the appropriate datas, then pass the path to your hook file on the command line. > It would be sweet if in the future PyIn

Re: [PyInstaller] Examples of projects using PyInstaller

2016-01-29 Thread Nicholas Chammas
Makes sense. I’ll report back if I find there is something I need that I can’t do from the command line interface. Hmm, is there a way to capture data file requirements as command-line options? a = Analysis( ['my-program.py'], datas=[ ('data-dir', './data-dir'), ('some

Re: [PyInstaller] Examples of projects using PyInstaller

2016-01-28 Thread Nicholas Chammas
You may have a look at brog -backup: https://github.com/borgbackup/borg > Thanks for the reference! Looks like this is the money shot . As long as you can pass all required parameters on the

Re: [PyInstaller] Examples of projects using PyInstaller

2016-01-26 Thread Hartmut Goebel
Am 16.01.2016 um 19:10 schrieb Nicholas Chammas: > The specific things I’m looking to see examples of in other people’s > projects are: You may have a look at brog -backup: https://github.com/borgbackup/borg > * How do they invoke PyInstaller? If they use a |.spec| file, what > does it look

[PyInstaller] Examples of projects using PyInstaller

2016-01-26 Thread Nicholas Chammas
Howdy, I’m looking for examples of projects using PyInstaller on a regular basis to package and release their work. I’m getting ready to make my first release using PyInstaller , and as a Python newbie I think it would be instructive for me to