Changeset 124

Show
Ignore:
Timestamp:
01/30/10 19:28:12 (2 years ago)
Author:
mauro
Message:

add pyflakes
plone 3.3.1 -> 3.3.4
eggtractor

Location:
plone4bio.buildout/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • plone4bio.buildout/trunk/config/base.cfg

    r120 r124  
    11[buildout] 
     2extensions = buildout.eggtractor 
    23parts =  
    34    zope2 
     
    910# Modify the "3.3.1" to match the version you're seeking. 
    1011find-links = 
    11     http://dist.plone.org/release/3.3.1 
     12    http://dist.plone.org/release/3.3.4 
    1213#    http://pypi.python.org/simple 
    13 extends = http://dist.plone.org/release/3.3.1/versions.cfg 
     14extends = http://dist.plone.org/release/3.3.4/versions.cfg 
    1415versions = versions 
    1516 
     
    1920    Plone 
    2021    biopython 
    21     biocomp.pscoils 
    22     Cheetah 
    2322 
    2423# Reference any eggs you are developing here, one per line 
    2524# e.g.: develop = src/my.package 
    2625develop = 
    27     src/plone4bio.base 
    28     src/plone4bio.pscoils 
    29     src/biocomp.pscoils 
    30     src/plone4bio.biosql 
    31     src/plone4biotheme.base 
    3226 
    3327[plone4bio] 
     
    3933 
    4034[versions] 
    41 zope.testing = 3.7.7 
    42 Cheetah = 2.2.1 
     35# zope.testing = 3.7.7 
     36# Cheetah = 2.2.1 
    4337hexagonit.recipe.download = 1.2.1 
     38Markdown = 2.0.3 
    4439 
    4540# zope part: Note the new fake-eggs settings. This is required 
     
    5449    pytz 
    5550skip-fake-eggs = zope.testing 
     51                 zope.interface 
     52                 zope.exceptions 
    5653 
    5754[instance] 
     
    6259eggs = 
    6360    ${buildout:eggs} 
    64     ${plone4bio:eggs} 
    65  
    6661zcml = 
    67     ${plone4bio:eggs} 
    68  
    6962products = 
    7063    ${buildout:directory}/products 
    71  
    7264extra-paths = 
     65    ${zope2:location}/lib/python 
    7366 
    7467[zopepy] 
  • plone4bio.buildout/trunk/development.cfg

    r87 r124  
    66    idelauncher 
    77    roadrunner 
     8    pyflakes 
    89eggs += 
    9     stxnext.pdb 
    1010    psycopg2 
    1111    MySQL-python 
     
    5858packages-under-test = ${plone4bio:eggs} 
    5959 
     60[pyflakes] 
     61recipe = zc.recipe.egg 
     62scripts = 
     63   pyflakes 
     64eggs = 
     65   pyflakes 
     66   setuptools 
     67entry-points = pyflakes=pkg_resources:run_script 
     68arguments = 'pyflakes', 'pyflakes' 
     69initialization = 
     70    sys.argv += """${buildout:develop}""".split() 
     71 
     72