[Subversion] / PEAK / setup.py  

Diff of /PEAK/setup.py

Parent Directory | Revision Log

version 1060, Thu May 1 16:32:39 2003 UTC version 1061, Thu May 1 17:43:55 2003 UTC
Line 6 
Line 6 
   
 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.
   include_fcgiapp    = True   # edit this to stop installation of 'fcgiapp'
   
 # Metadata  # Metadata
   
Line 128 
Line 128 
     # install 'peak' script on Unix-like OS's (including cygwin)      # install 'peak' script on Unix-like OS's (including cygwin)
     scripts = ['scripts/peak']      scripts = ['scripts/peak']
   
       # install 'fcgiapp' module, too
       if include_fcgiapp:
           extensions += [
               Extension("fcgiapp", [
                   "src/fcgiapp/fcgiappmodule.c", "src/fcgiapp/fcgiapp.c"
               ])
           ]
   
 else:  else:
     # Nothing to see here, move along...      # Nothing to see here, move along...
     scripts = []      scripts = []
Line 140 
Line 148 
     version=PACKAGE_VERSION,      version=PACKAGE_VERSION,
   
     description="The Python Enterprise Application Kit",      description="The Python Enterprise Application Kit",
   
     author="Phillip J. Eby",      author="Phillip J. Eby",
     author_email="transwarp@eby-sarna.com",      author_email="transwarp@eby-sarna.com",
   
     url="http://peak.telecommunity.com/",      url="http://peak.telecommunity.com/",
   
     license="PSF or ZPL",      license="PSF or ZPL",
     platforms=['UNIX','Windows'],      platforms=['UNIX','Windows'],
   
     packages    = packages,  
     package_dir = {'':'src'},      package_dir = {'':'src'},
       packages    = packages,
     cmdclass = SETUP_COMMANDS,      cmdclass = SETUP_COMMANDS,
   
     data_files = data_files,      data_files = data_files,
     ext_modules = extensions,      ext_modules = extensions,
     scripts = scripts,      scripts = scripts,
 )  )
   
   
   
   


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

cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help