[Subversion] / PEAK / setup.py  

Diff of /PEAK/setup.py

Parent Directory | Revision Log

version 383, Fri Apr 5 00:38:34 2002 UTC version 404, Thu Jun 13 00:15:00 2002 UTC
Line 45 
Line 45 
   
     description = "Run unit tests after installation"      description = "Run unit tests after installation"
   
     user_options = [('test-module=','m','Test module (default=TW.tests)'),]      user_options = [('test-module=','m','Test module (default=peak.tests)'),]
   
     def initialize_options(self):      def initialize_options(self):
         self.test_module = None          self.test_module = None
Line 53 
Line 53 
     def finalize_options(self):      def finalize_options(self):
   
         if self.test_module is None:          if self.test_module is None:
             self.test_module = 'TW.tests'              self.test_module = 'peak.tests'
   
         self.test_args = [self.test_module+'.test_suite']          self.test_args = [self.test_module+'.test_suite']
   
Line 85 
Line 85 
     """Command to generate documentation using HappyDoc      """Command to generate documentation using HappyDoc
   
         I should probably make this more general, and contribute it to either          I should probably make this more general, and contribute it to either
         HappyDoc or the distutils, but this does the trick for TW for now...          HappyDoc or the distutils, but this does the trick for PEAK for now...
     """      """
   
     description = "Generate docs using happydoc"      description = "Generate docs using happydoc"
Line 105 
Line 105 
   
         if self.happy_options is None:          if self.happy_options is None:
             self.happy_options = [              self.happy_options = [
                 '-t', 'TransWarp Reference', '-d', self.doc_output_path,                  '-t', 'PEAK Reference', '-d', self.doc_output_path,
                 '-i', 'examples', '-i', 'old', '-i', 'tests', '.',                  '-i', 'examples', '-i', 'old', '-i', 'tests', '.',
             ]              ]
             if not self.verbose: self.happy_options.insert(0,'-q')              if not self.verbose: self.happy_options.insert(0,'-q')
Line 123 
Line 123 
   
 setup(  setup(
   
     name="TransWarp",      name="PEAK",
     version="0.2pre1",      version="0.2pre1",
     description="The TransWarp Software Automation Toolkit",      description="The Python Enterprise Applications tool Kit",
   
     author="Phillip J. Eby",      author="Phillip J. Eby",
     author_email="transwarp@eby-sarna.com",      author_email="transwarp@eby-sarna.com",
   
     url="http://www.telecommunity.com/TransWarp/",      url="http://telecommunity.com/TransWarp/",
   
     packages=[      packages=[
         'TW', 'TW.API', 'TW.Database', 'TW.MOF', 'TW.SEF', 'TW.UML', 'TW.XMI',          'peak', 'peak.api', 'peak.binding', 'peak.model', 'peak.metamodels',
         'TW.Utils', 'TW.API.tests', 'TW.Database.tests', 'TW.SEF.tests',          'peak.metamodels.MOF', 'peak.metamodels.UML', 'peak.metamodels.XMI',
         'TW.Utils.tests', 'TW.tests', 'TWX', 'TWX.Diagrams',          'peak.util',
   
           'peak.api.tests', 'peak.binding.tests',
           'peak.metamodels.tests', 'peak.util.tests', 'peak.tests',
     ],      ],
   
     package_dir = {'':'src'},      package_dir = {'':'src'},
Line 146 
Line 149 
     },      },
   
     data_files = [      data_files = [
         ('TW/SEF/tests', ['src/TW/SEF/tests/MetaMeta.xml']),          ('peak/metamodels/tests', ['src/peak/metamodels/tests/MetaMeta.xml']),
     ],      ],
 )  )
   


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

cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help