Package jazzparser
[hide private]
[frames] | no frames]

Source Code for Package jazzparser

 1  """ 
 2  The Jazz Parser - Mark Granroth-Wilding's parser for his PhD research  
 3  into the use of combinatory categorial grammar and statistical  
 4  parsing for music processing. 
 5   
 6  """ 
 7   
 8  __version__ = '3.0-pre' 
 9   
10  __copyright__ = """\ 
11  Copyright (C) 2008-2012 Mark Granroth-Wilding. 
12   
13  Distributed and Licensed under the GNU General Public License, version 3, 
14  which is included by reference. 
15  """ 
16   
17  __license__ = "GNU General Public License, version 3" 
18   
19  __url__ = "http://jazzparser.granroth-wilding.co.uk/" 
20   
21  # Maintainer, contributors, etc. 
22  __maintainer__ = "Mark Granroth-Wilding" 
23  __maintainer_email__ = "mark.granroth-wilding@ed.ac.uk" 
24  __author__ = __maintainer__ 
25  __author_email__ = __maintainer_email__ 
26