[Subversion] / PEAK / setup.py  

Diff of /PEAK/setup.py

Parent Directory | Revision Log

version 325, Fri Feb 15 14:22:07 2002 UTC version 2073, Sat Jul 9 05:32:33 2005 UTC
Line 1 
Line 1 
 #!/usr/bin/env python  #!/usr/bin/env python
   """Distutils setup file"""
   
   import sys, os, ez_setup
   ez_setup.use_setuptools()
   
   from setuptools import setup, Extension, Feature, find_packages
   
   # Metadata
   PACKAGE_NAME = "PEAK"
   PACKAGE_VERSION = "0.5a4"
   HAPPYDOC_IGNORE = [
       '-i','old', '-i','tests', '-i','setup', '-i','examples',
   ]
   
   scripts = ['scripts/peak']
   packages = find_packages('src')
   
   extensions = [
       Extension("peak.util.pyexpat", [
           "src/peak/util/pyexpat.c",
           "src/expat/xmlparse.c", "src/expat/xmltok.c", #"src/expat/xmltok_ns.c",
           "src/expat/xmlrole.c",], #"src/expat/xmltok_impl.c"],
           include_dirs=["src/expat"],
           define_macros=[('XML_STATIC',1),('HAVE_MEMMOVE',1)]   # XXX
       ),
       Extension(
           "peak.binding._once", [
               "src/peak/binding/_once.pyx", "src/peak/binding/getdict.c"
           ]
       ),
       Extension("peak.util.buffer_gap", ["src/peak/util/buffer_gap.pyx"]),
       Extension("peak.util._Code", ["src/peak/util/_Code.pyx"]),
       Extension(
           "peak.persistence._persistence", ["src/peak/persistence/persistence.c"]
       ),
   ]
   
   
   
   
   have_uuidgen = False
   
   if os.name=='posix' and hasattr(os, 'uname'):
   
       un = os.uname()
   
       if un[0] == 'FreeBSD' and int(un[2].split('.')[0]) >= 5:
           have_uuidgen = True
   
       elif un[0] == 'NetBSD' and int(un[2].split('.')[0]) >= 2:
           have_uuidgen = True
   
       elif un[0] == 'NetBSD' and un[2].startswith('1.6Z'):
           # XXX for development versions before 2.x where uuidgen
           # is present -- this should be removed at some point
           try:
               if len(un[2]) > 4:
                   if ord(un[2][4]) >= ord('I'):
                       if os.path.exists('/lib/libc.so.12'):
                           l = os.listdir('/lib')
                           l = [x for x in l if x.startswith('libc.so.12.')]
                           l = [int(x.split('.')[-1]) for x in l]
                           l.sort(); l.reverse()
                           if l[0] >= 111:
                               have_uuidgen = True
           except:
               pass
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   execfile('src/setup/common.py')
   
   features = {
       'tests': Feature(
           "test modules", standard = True,
           remove = [p for p in packages if p.endswith('.tests')]
       ),
       'metamodels': Feature(
           "MOF/UML metamodels", standard = True, remove=['peak.metamodels']
       ),
       'uuidgen': Feature(
           "UUID generation via BSD system libraries",
           available = have_uuidgen, standard = have_uuidgen,
           optional = have_uuidgen,
           ext_modules = [
               Extension("peak.util._uuidgen", ["src/peak/util/_uuidgen.c"]),
           ]
       ),
       'pyexpat-plus': Feature(
           "Backport pyexpat features from Python 2.4",
           standard=sys.version_info < (2,4), optional = False,
           remove = ["peak.util.pyexpat"]
       ),
   }
   
   ALL_EXTS = [
       '*.ini', '*.html', '*.conf', '*.xml', '*.pwt', '*.dtd', '*.txt',
   ]
   
   
   
   
   
   
   
   
   
   
   
   
 from distutils.core import setup  
   
 setup(  setup(
     name="TransWarp",      name=PACKAGE_NAME,
     version="0.2pre1",      version=PACKAGE_VERSION,
     description="The TransWarp Software Automation Toolkit",  
       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.zope.org/Members/pje/Wikis/TransWarp",      url="http://peak.telecommunity.com/",
     packages=[      license="PSF or ZPL",
         'TW', 'TW.API', 'TW.Database', 'TW.MOF', 'TW.StructuralModel', 'TW.UML',      platforms=['UNIX','Windows'],
         'TW.Utils', 'TW.XMI', 'TW.tests', 'TW.tests.Database',  
         'TW.tests.StructuralModel',  
     ],  
     package_dir = {'':'src'},      package_dir = {'':'src'},
     data_files = [      packages    = packages,
         ('TW/tests/StructuralModel', ['TW/tests/StructuralModel/MetaMeta.xml']),      cmdclass = SETUP_COMMANDS,
   
       install_requires = [
           'PyProtocols >= 1.0a0dev-r2070',
           'wsgiref     >= 0.0.1dev',
           'ZConfig     >  2.0',
     ],      ],
   
       extras_require = {
           'FastCGI': ['fcgiapp >= 1.4'],
       },
   
       package_data = {
           '': ALL_EXTS,
           'peak.metamodels': ['*.asdl']
       },
   
       features = features,
       test_suite = 'peak.tests.test_suite',
       ext_modules = extensions,
       scripts = scripts,
 )  )
   
   
   
   
   
   


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

cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help