After starting the pasteur I have some eggs in my product

I just ran

bin/paster create -t dexterity my.example

After starting, I have the following:

 bootstrap.py
 docs
 my.example.egg-info
 PasteDeploy-1.5.0-py2.6.egg
 plone.cfg
 setup.cfg
 buildout.cfg
 my
 Paste-1.7.5.1-py2.6.egg
 PasteScript-1.7.5-py2.6.egg
 README.txt
 setup.py

Why do I also have 3 eggs? Is my collector configured incorrectly?

I just installed Plone4 with a unified installer, and when I tried to run the pater command, I got this error:

 AttributeError: 'module' object has no attribute 'NoDefault'

This is when I added a part [paster]to my construction, as shown here . Initially, my build had only a [zopskel]part without [paster].

+3
source share
1 answer

This is completely normal if somewhat annoying. The setup.py file pulls them into sections setup_requiresand paster_plugins:

setup(...
    setup_requires=["PasteScript"],
    paster_plugins=["ZopeSkel"],
    ...
)

ZopeSkel . , .

+5

All Articles