Changeset 346

Show
Ignore:
Timestamp:
12/29/07 09:26:06 (1 year ago)
Author:
astraw
Message:

moving to motmot namespace

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/FlyMovieFormat/setup.py

    r279 r346  
    1 import sys 
    2 from setuptools import setup 
    3 import distutils.command.sdist 
     1from setuptools import setup, find_packages 
    42 
    5 if 1: 
    6     kws=dict( 
    7       extras_require = { 
    8     'imops':      ['imops>=0.3.dev275'], 
    9     }, 
    10  
    11       entry_points = { 
    12     'console_scripts': [ 
    13     'fmf2bmps = FlyMovieFormat.fmf2bmps:main', 
    14     'fmf_collapse = FlyMovieFormat.fmf_collapse:main', 
    15     'fmf_info = FlyMovieFormat.fmf_info:main', 
    16     ], 
    17     'gui_scripts': [ 
    18     'playfmf = FlyMovieFormat.playfmf:main [imops]', 
    19     'fmf_plottimestamps = FlyMovieFormat.fmf_plottimestamps:main', 
    20     ], 
    21     'FlyMovieFormat.exporter_plugins':[ 
    22         'txt = FlyMovieFormat.playfmf:TxtFileSaverPlugin', 
    23         'fmf = FlyMovieFormat.playfmf:FmfFileSaverPlugin', 
    24         'image_sequence = FlyMovieFormat.playfmf:ImageSequenceSaverPlugin', 
    25         ], 
    26     }, 
    27       ) 
     3kws=dict( 
     4    ) 
    285 
    296setup(name='FlyMovieFormat', 
     
    3411      license='BSD', 
    3512      url='http://code.astraw.com/projects/motmot', 
    36       packages = ['FlyMovieFormat'], 
    37       package_data = {'FlyMovieFormat':['playfmf.xrc', 
    38                                         'matplotlibrc', 
    39                                         'test_mono8.fmf', 
    40                                         'description.txt']}, 
    41       **kws 
     13      namespace_packages = ['motmot'], 
     14      packages = find_packages(), 
     15      package_data = {'motmot.FlyMovieFormat':['playfmf.xrc', 
     16                                               'matplotlibrc', 
     17                                               'test_mono8.fmf', 
     18                                               'description.txt']}, 
     19      entry_points = { 
     20    'console_scripts': ['fmf2bmps = motmot.FlyMovieFormat.fmf2bmps:main', 
     21                        'fmf_collapse = motmot.FlyMovieFormat.fmf_collapse:main', 
     22                        'fmf_info = motmot.FlyMovieFormat.fmf_info:main', 
     23                        ], 
     24    'gui_scripts': ['playfmf = motmot.FlyMovieFormat.playfmf:main', 
     25                    'fmf_plottimestamps = motmot.FlyMovieFormat.fmf_plottimestamps:main', 
     26                    ], 
     27    'FlyMovieFormat.exporter_plugins':['txt = motmot.FlyMovieFormat.playfmf:TxtFileSaverPlugin', 
     28                                       'fmf = motmot.FlyMovieFormat.playfmf:FmfFileSaverPlugin', 
     29                                       'image_sequence = motmot.FlyMovieFormat.playfmf:ImageSequenceSaverPlugin', 
     30                                       ], 
     31    }, 
    4232      )