[Subversion] / PEAK / setup.py  

Diff of /PEAK/setup.py

Parent Directory | Revision Log

version 458, Sun Jul 7 20:44:37 2002 UTC version 576, Mon Oct 28 17:58:01 2002 UTC
Line 2 
Line 2 
   
 """Distutils setup file"""  """Distutils setup file"""
   
 from distutils.core import setup, Command  from distutils.core import setup, Command, Extension
 from distutils.command.install_data import install_data  from distutils.command.install_data import install_data
 from distutils.command.sdist import sdist as old_sdist  from distutils.command.sdist import sdist as old_sdist
 import sys  import sys
Line 13 
Line 13 
   
     def finalize_options (self):      def finalize_options (self):
         self.set_undefined_options('install',          self.set_undefined_options('install',
                                    ('install_purelib', 'install_dir'),                                     ('install_lib', 'install_dir'),
                                    ('root', 'root'),                                     ('root', 'root'),
                                    ('force', 'force'),                                     ('force', 'force'),
                                   )                                    )
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 = 'peak.tests'              self.test_module = 'peak.api.tests'
   
         self.test_args = [self.test_module+'.test_suite']          self.test_args = [self.test_module+'.test_suite']
   
Line 106 
Line 106 
         if self.happy_options is None:          if self.happy_options is None:
             self.happy_options = [              self.happy_options = [
                 '-t', 'PEAK 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',
                   '-i', 'Interface', '.'
             ]              ]
             if not self.verbose: self.happy_options.insert(0,'-q')              if not self.verbose: self.happy_options.insert(0,'-q')
   
Line 120 
Line 121 
         if not self.dry_run:          if not self.dry_run:
             HappyDoc(self.happy_options).run()              HappyDoc(self.happy_options).run()
   
   
 setup(  setup(
   
     name="PEAK",      name="PEAK",
     version="0.2pre1",      version="0.5a1",
     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://www.telecommunity.com/PEAK/",
     url="http://telecommunity.com/TransWarp/",  
   
     packages=[      packages=[
         'peak', 'peak.api', 'peak.binding', 'peak.model', 'peak.metamodels',          'peak', 'peak.api', 'peak.binding', 'peak.model', 'peak.metamodels',
         'peak.metamodels.mof', 'peak.metamodels.uml', 'peak.metamodels.xmi',          'peak.metamodels.mof', 'peak.metamodels.uml', 'peak.metamodels.xmi',
         'peak.naming', 'peak.naming.factories', 'peak.util',          'peak.naming', 'peak.naming.factories', 'peak.util', 'peak.running',
           'peak.config', 'peak.storage',
   
         'peak.binding.tests',          'peak.binding.tests', 'peak.config.tests',
         'peak.metamodels.tests', 'peak.util.tests', 'peak.tests',          'peak.metamodels.tests', 'peak.util.tests', 'peak.tests',
   
         'Interface', 'Interface.Common', 'Interface.tests',          'Interface', 'Interface.tests',
     ],          'Interface.Common', 'Interface.Common.tests',
           'Interface.Registry', 'Interface.Registry.tests',
   
           'Persistence',
       ],
     package_dir = {'':'src'},      package_dir = {'':'src'},
   
       ext_modules = [
           Extension("kjbuckets", ["src/kjbuckets/kjbucketsmodule.c"]),
           Extension("Persistence.cPersistence",
               ["src/Persistence/cPersistence.c"]
           )
       ],
     cmdclass = {      cmdclass = {
         'install_data': install_data, 'sdist': sdist, 'happy': happy,          'install_data': install_data, 'sdist': sdist, 'happy': happy,
         'test': test,          'test': test, 'sdist_nodoc': old_sdist,
     },      },
   
     data_files = [      data_files = [
           ('peak', ['src/peak/peak.ini']),
         ('peak/metamodels/tests', ['src/peak/metamodels/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.458  
changed lines
  Added in v.576

cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help