|
1 | 1 | # -*- coding: utf-8 -*- |
2 | 2 | # ------------------------------------------------------------------------------ |
3 | 3 | # Name: romanText/__init__.py |
4 | | -# Purpose: music21 classes for processing roman numeral analysis text files |
| 4 | +# Purpose: music21 classes for processing roman numeral analysis files |
5 | 5 | # |
6 | 6 | # Authors: Christopher Ariza |
7 | 7 | # Michael Scott Cuthbert |
| 8 | +# Mark Gotham |
8 | 9 | # |
9 | | -# Copyright: Copyright © 2011-2012 Michael Scott Cuthbert and the music21 Project |
| 10 | +# Copyright: Copyright © 2011-2012, 2019 Michael Scott Cuthbert and the music21 Project |
10 | 11 | # License: BSD, see license.txt |
11 | 12 | # ------------------------------------------------------------------------------ |
12 | 13 |
|
13 | | -'''Objects for processing roman numeral analysis text files, as defined and |
14 | | -demonstrated by Dmitri Tymoczko. |
| 14 | +'''Objects for processing roman numeral analysis files, in formats defined and demonstrated by: |
| 15 | +Dmitri Tymoczko, Trevor De Clercq & David Temperley, and the DCMLab. |
15 | 16 | ''' |
16 | 17 |
|
17 | | -__all__ = ['clercqTemperley', 'rtObjects', 'translate', 'testFiles'] |
| 18 | +__all__ = ['clercqTemperley', 'rtObjects', 'translate', 'testFiles', 'tsvConverter'] |
18 | 19 |
|
19 | 20 | from music21.romanText import clercqTemperley |
20 | 21 | from music21.romanText import rtObjects |
21 | 22 | from music21.romanText import testFiles |
22 | 23 | from music21.romanText import translate |
| 24 | +from music21.romanText import tsvConverter |
0 commit comments