~nipy-developers/nipy/fff2

« back to all changes in this revision

Viewing changes to python/setup.py

  • Committer: Bertrand THIRION
  • Date: 2008-04-03 17:29:55 UTC
  • mfrom: (13.1.5 fff2)
  • Revision ID: bt206016@is143015-20080403172955-w7v1pdjdriofvzzs
Merged Alexis'changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
 
9
9
    config = Configuration('fff2', parent_package, top_path)
10
10
 
11
 
    ##config.add_subpackage('misc')
 
11
    config.add_subpackage('bindings')
 
12
    config.add_subpackage('misc')
12
13
    ##config.add_subpackage('glm')
13
14
    ##config.add_subpackage('mfx')
14
15
    ##config.add_subpackage('match')
28
29
            sources=[Cfile],
29
30
            libraries=['fffpy']
30
31
            )
31
 
    """
32
 
    Add extensions for C bindings tests. 
33
 
    """
34
 
    root_bt = join(root, 'bindings', 'tests')
35
 
    config.add_extension(
36
 
        'testmodule',
37
 
        sources=[join(root_bt, 'testmodule.c')],
38
 
        libraries=['fffpy']
39
 
        )
40
32
    
41
33
    config.make_config_py() # installs __config__.py
42
34