[Subversion] / BytecodeAssembler / setup.py  

Diff of /BytecodeAssembler/setup.py

Parent Directory | Revision Log

version 2140, Tue May 23 05:29:26 2006 UTC version 2142, Tue May 23 05:53:30 2006 UTC
Line 12 
Line 12 
 PACKAGE_VERSION = "0.0.1"  PACKAGE_VERSION = "0.0.1"
 PACKAGES = ['peak', 'peak.util']  PACKAGES = ['peak', 'peak.util']
   
   def get_description():
       # Get our long description from the documentation
       f = file('README.txt')
       lines = []
       for line in f:
           if not line.strip():
               break     # skip to first blank line
       for line in f:
           if line.startswith('.. contents::'):
               break     # read to table of contents
           lines.append(line)
       f.close()
       return ''.join(lines)
   
 setup(  setup(
     name=PACKAGE_NAME,      name=PACKAGE_NAME,
     version=PACKAGE_VERSION,      version=PACKAGE_VERSION,
   
     description='Generate Python code objects by "assembling" bytecode',      description='Generate Python code objects by "assembling" bytecode',
       long_description = get_description(),
   
     author="Phillip J. Eby",      author="Phillip J. Eby",
     author_email="peak@eby-sarna.com",      author_email="peak@eby-sarna.com",
     license="PSF or ZPL",      license="PSF or ZPL",


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

cvs-admin@eby-sarna.com

Powered by ViewCVS 1.0-dev

ViewCVS and CVS Help