comparison Alignment/C_Libraries/NWunsch/Csetup.py @ 0:1eb6054a1f84

First Commit
author Victor Padilla <victor.padilla.mc@gmail.com>
date Mon, 04 May 2015 22:47:33 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:1eb6054a1f84
1 '''
2 @organization: Lancaster University & University of Leeds
3 @version: 1.0
4 Created on 11/12/2014
5
6 @author: Victor Padilla
7 @contact: v.padilla@lancaster.ac.uk
8
9 This file compiles 'NWunsch.c' into 'NWunsch.pyd'
10
11 The 'NWunsch.pyd' file should be copied in the'Alignment' folder
12
13 usage:
14
15 python Csetup.py build
16 '''
17 from distutils.core import setup, Extension
18
19 module1 = Extension('NWunsch', sources = ['NWunsch.c'])
20
21 setup (name = 'NWunsch',
22 version = '1.0',
23 description = 'It calculates the differences between two arrays based on Needlemann Wunsh algorith',
24 ext_modules = [module1])