[web2py][share] gluttony for graph python project dependencies

2014-01-07 Thread Richard
Hello, I was looking to find a way to compile the dependencies of my project and I falled on this : https://bitbucket.org/victorlin/gluttony It might be an interesting addon to web2py? Richard -- Resources: - http://web2py.com - http://web2py.com/book (Documentation) -

Re: [web2py][share] gluttony for graph python project dependencies

2014-01-07 Thread Richard Vézina
Ho! Forget about that, there is no web2py pip package and gluttony required a pip package to work... So, not possible to make it works for app I guess. Richard On Tue, Jan 7, 2014 at 2:31 PM, Richard ml.richard.vez...@gmail.com wrote: Hello, I was looking to find a way to compile the

Re: [web2py][share] gluttony for graph python project dependencies

2014-01-07 Thread Marco Mansilla
El Tue, 7 Jan 2014 14:55:17 -0500 Richard Vézina ml.richard.vez...@gmail.com escribió: Ho! Forget about that, there is no web2py pip package and gluttony required a pip package to work... So, not possible to make it works for app I guess. Richard On Tue, Jan 7, 2014 at 2:31 PM, Richard

Re: [web2py][share] gluttony for graph python project dependencies

2014-01-07 Thread Niphlod
except that web2py depends on nothing by default, and in fact you can run it on the standard python library with no additions. That project just parses the various setup.py in packages to find dependencies that are explicitely written into setup.py, it doesn't inspect your code to see what

Re: [web2py][share] gluttony for graph python project dependencies

2014-01-07 Thread Richard Vézina
I didn't try before post :( I should have... I know web2py is self containing, but I may have import other python package from my app... Do you have a cue about a prog or a python script that could ramp my source and list my dependencies? Thanks Richard On Tue, Jan 7, 2014 at 3:46 PM,

Re: [web2py][share] gluttony for graph python project dependencies

2014-01-07 Thread Richard Vézina
This may seems what I am searching for : http://furius.ca/snakefood/ Richard On Tue, Jan 7, 2014 at 3:54 PM, Richard Vézina ml.richard.vez...@gmail.comwrote: I didn't try before post :( I should have... I know web2py is self containing, but I may have import other python package from my

Re: [web2py][share] gluttony for graph python project dependencies

2014-01-07 Thread Niphlod
never tried. I'd go for http://pythonhosted.org/modulegraph/index.html. BTW: why don't you just initialize an empty venv, run your test suite and add modules as they are found missing ? Given the nature of web2py applications you'll have hard times to figure out dependencies without running

Re: [web2py][share] gluttony for graph python project dependencies

2014-01-07 Thread Richard Vézina
That's a idea... You are right snakefood can't import web2py modules... Thanks Richard On Tue, Jan 7, 2014 at 4:31 PM, Niphlod niph...@gmail.com wrote: never tried. I'd go for http://pythonhosted.org/modulegraph/index.html. BTW: why don't you just initialize an empty venv, run your test