NCCOOS Trac Projects: Top | Web | Platforms | Processing | Viz | Sprints | Sandbox | (Wind)

Changeset 350

Show
Ignore:
Timestamp:
08/31/10 18:33:31
Author:
cbc
Message:

Create parse module.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • spongenet/trunk/MANIFEST.in

    r349 r350  
    22include setup.py 
    33recursive-include spongenet/tests/expand *.zip *.ref *.xml 
     4recursive-include spongenet/tests/parse *.xml 
    45prune spongenet/tests/expand/xml 
    56prune spongenet/tests/expand/xmltest 
  • spongenet/trunk/setup.py

    r349 r350  
    2323                       ' :: GNU General Public License (GPL)', 
    2424                   'Operating System :: POSIX', 
    25                     ], 
     25                  ], 
    2626      packages=['spongenet', 
    2727                'spongenet.tests', 
    28                 'spongenet.tests.expand', ], 
     28                'spongenet.tests.expand', 
     29                'spongenet.tests.parse', 
     30               ], 
    2931      package_data={'spongenet.tests.expand': [os.path.join('zip', 
    3032                                                            '*', 
     
    3739                                                            '*', 
    3840                                                            '*.xml',), ], 
     41                    'spongenet.tests.parse': [os.path.join('xml', 
     42                                                           '*', 
     43                                                           '*.xml',), ], 
    3944                   }, 
    4045     )