[Subversion] / PEAK / setup.py  

Diff of /PEAK/setup.py

Parent Directory | Revision Log

version 974, Thu Apr 10 01:22:36 2003 UTC version 997, Sat Apr 19 18:35:30 2003 UTC
Line 2 
Line 2 
   
 """Distutils setup file"""  """Distutils setup file"""
   
   from distutils.core import Extension
   from os.path import join, walk
   from os import sep
   import fnmatch
   
 include_tests = True        # edit this to stop installation of test modules  include_tests = True        # edit this to stop installation of test modules
 include_metamodels = True   # edit this to stop installation of MOF, UML, etc.  include_metamodels = True   # edit this to stop installation of MOF, UML, etc.
   
   
   try:
       import Pyrex.Distutils
       EXT = '.pyx'
   
   except ImportError:
       EXT = '.c'
   
   
   def findDataFiles(dir, skipDepth, *globs):
   
       def visit(out, dirname, names):
           n = []
           for pat in globs:
               n.extend(fnmatch.filter(names,pat))
           if n:
               instdir = sep.join(dirname.split(sep)[skipDepth:])
               out.append( (instdir, [join(dirname,f) for f in n]) )
   
       out = []
       walk(dir,visit,out)
       return out
   
   
   
 # Metadata  # Metadata
   
 PACKAGE_NAME = "PEAK"  PACKAGE_NAME = "PEAK"
Line 27 
Line 57 
     'Persistence',      'Persistence',
 ]  ]
   
   extensions = [
       Extension("kjbuckets", ["src/kjbuckets/kjbucketsmodule.c"]),
       Extension(
           "peak.binding._once", [
               "src/peak/binding/_once" + EXT,
               "src/peak/binding/getdict.c"
           ]
       ),
       Extension("peak.util.buffer_gap", ["src/peak/util/buffer_gap" + EXT]),
       Extension("peak.util._Code", ["src/peak/util/_Code" + EXT]),
   ]
   
   
 # Base data files  # Base data files
   
Line 77 
Line 119 
             ),              ),
         ]          ]
   
   try:
       # Check if Zope X3 is installed; we use zope.component
       # because we don't install it ourselves; if we used something we
       # install, we'd get a false positive if PEAK was previously installed.
       import zope.component
       zope_installed = True
   
   except ImportError:
       zope_installed = False
   
   
   if not zope_installed:
   
       packages += [
           'zope', 'zope.interface', 'zope.interface.common',
           'persistence', 'ZConfig',
       ]
   
       extensions += [
           Extension("persistence._persistence", ["src/persistence/persistence.c"])
       ]
   
       if include_tests:
           packages += [
               'zope.interface.tests', 'persistence.tests', 'ZConfig.tests',
           ]
   
           data_files += findDataFiles('src/ZConfig/tests', 1, '*.xml', '*.txt', '*.conf')
   
   
   
Line 103 
Line 173 
   
     data_files = data_files,      data_files = data_files,
   
     ext_modules = [      ext_modules = extensions,
         Extension("kjbuckets", ["src/kjbuckets/kjbucketsmodule.c"]),  
         Extension("Persistence.cPersistence",  
             ["src/Persistence/cPersistence.c"]  
         ),  
         Extension(  
             "peak.binding._once", [  
                 "src/peak/binding/_once" + EXT,  
                 "src/peak/binding/getdict.c"  
             ]  
         ),  
         Extension("peak.util.buffer_gap", ["src/peak/util/buffer_gap" + EXT]),  
         Extension("peak.util._Code", ["src/peak/util/_Code" + EXT]),  
     ],  
   
 )  )
   
   


Generate output suitable for use with a patch program
Legend:
Removed from v.974  
changed lines
  Added in v.997

cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help