[Subversion] / PEAK / setup.py  

Diff of /PEAK/setup.py

Parent Directory | Revision Log

version 1584, Sun Jan 4 21:06:13 2004 UTC version 1595, Thu Jan 15 01:12:42 2004 UTC
Line 17 
Line 17 
   
 # Base packages for installation  # Base packages for installation
 scripts = ['scripts/peak']  scripts = ['scripts/peak']
   modules = []
 packages = [  packages = [
     'peak', 'peak.api', 'peak.binding', 'peak.config', 'peak.model',      'peak', 'peak.api', 'peak.binding', 'peak.config', 'peak.model',
     'peak.naming', 'peak.naming.factories', 'peak.net', 'peak.running',      'peak.naming', 'peak.naming.factories', 'peak.net', 'peak.running',
Line 124 
Line 124 
 import sys  import sys
   
 if sys.version_info < (2,3):  if sys.version_info < (2,3):
     # Install datetime module if we're not on 2.3      # Install datetime and csv if we're not on 2.3
   
     packages += ['datetime']      packages += ['datetime']
     if include_tests:      if include_tests:
         packages += ['datetime.tests']          packages += ['datetime.tests']
   
       modules += ['csv']
       extensions += [
           Extension('_csv', ['src/_csv.c'])
       ]
   
 import os  import os
   
Line 157 
Line 162 
   
   
   
   
   
   
   
   
 execfile('src/setup/common.py')  execfile('src/setup/common.py')
   
 setup(  setup(


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

cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help