[Distutils] Re: requirements.txt or not requirements.txt?

2018-05-07 Thread Alessandro Dentella
On Mon, May 07, 2018 at 11:33:44AM +0300, Marius Gedminas wrote: > On Mon, May 07, 2018 at 08:48:23AM +0200, Carles Sala Cladellas wrote: > > Hello here! > > > > TL;DR: Should I use requirements.txt, or should I have my dependencies only > > listed inside setup.py? > > Short answer: only setup.py,

[Distutils] wierd namespaces: nspkh.pth makes a package builtin

2018-04-12 Thread Alessandro Dentella
setuptools import setup, find_packages setup( name='jmb.vega', namespace_packages=['jmb'], version="0.1", description='Test package', author='Alessandro Dentella', packages=find_packages(exclude=['tests', 'tests.*']), platforms='any', zip_safe=False,

[Distutils] buildout & extra-path

2017-11-28 Thread Alessandro Dentella
Hi, I realized that extra-path is not always honored in buildout. I have a Django application that uses django-recipe with extra-path. I also want a pure ipython program that share the same sys.path. but if I write: [ipython] recipe = zc.recipe.egg eggs = ${buildout:eggs}

Re: [Distutils] Buoldout2 e setup.py: install_requires ignored

2016-09-14 Thread Alessandro Dentella
Hi Leonardo, On Tue, Sep 13, 2016 at 05:48:33PM -0300, Leonardo Rochael Almeida wrote: > Hi Sandro, > > I don't know what your previous setup did, but in your current setup, your > `buildout.cfg` is not configured to take your `setup.py` into account in > any way. > > In the `eggs` setting, only

[Distutils] Buoldout2 e setup.py: install_requires ignored

2016-09-13 Thread Alessandro Dentella
Hi, I just migrated from buildout 1.7 to buildout 2.5. In this migration I stopped using a recipe that created a virtualenv as a part of buildout and I now use an external (basic) virtualenv to calll bootrap, so I can't compare the two configuration in a strict way. My problem is that now it

Re: [Distutils] bootstrap 1.5.2, python2.6 and DistributionNotFound

2013-09-11 Thread Alessandro Dentella
A partial solution in below On Tue, Sep 10, 2013 at 09:20:43AM +0300, Marius Gedminas wrote: On Tue, Sep 10, 2013 at 07:44:05AM +0200, Alessandro Dentella wrote: Hi, I'm having problems using buildout on squeeze (that uses python 2.6). On ubuntu 12.10 (that uses python2.7) I have

[Distutils] bootstrap 1.5.2, python2.6 and DistributionNotFound

2013-09-09 Thread Alessandro Dentella
Hi, I'm having problems using buildout on squeeze (that uses python 2.6). On ubuntu 12.10 (that uses python2.7) I have no problems. I'm still usig buildout 1.5.2 as I need a recipe for virtual env that is not yet available for buildout 2.+ (tl.buildout_virtual_python). When executing python

Re: [Distutils] Buildout develop-eggs troubles

2012-04-01 Thread Alessandro Dentella
Thanks Jim, If, as I suspect, the project name is 'jumbo-core', rather than 'jumbo', then you need to add jumbo-core to your eggs option (on a separate line). this solves indeed my problem. I realize I could have understood it just looking at others egg names (e.g. python-dateutils).

[Distutils] Buildout: adding a link to a compiled library: uno

2012-04-01 Thread Alessandro Dentella
Hi, I have many web projects that depend on 'uno' component of openoffice to prepare pdf. I don't really need to compile it inside my buildout env. I'm not really inclined to do that as I know dev and deply is always in an environment with a working system 'uno' package. Under virtualenv all I

[Distutils] Buildout develop-eggs troubles

2012-03-31 Thread Alessandro Dentella
Hi, I'm trying buildout but I'm having a hard time trying to understand the logic of develop-egg. I tested both mr.developer recepy and gp.csvdevelop and I stumbled on the same problem, so I guess I'm misunderstanding something. I want to add a development repository named jumbo-core that

[Distutils] demo and setup.py

2010-12-18 Thread Alessandro Dentella
Hi, i'm new to this list. I hope this question is pertinent to the list, if not please address me to a more appropriate one. I'd like to understand what is the preferred way to cope with demo examples/directory while packaging. I have a classic structure sqlkit-N.n/ sqlkit/