Skip to content

Commit f05e2f6

Browse files
committed
Initial roman-tsv-roman converter
1 parent 8668131 commit f05e2f6

File tree

3 files changed

+820
-5
lines changed

3 files changed

+820
-5
lines changed

music21/romanText/__init__.py

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,24 @@
11
# -*- coding: utf-8 -*-
22
# ------------------------------------------------------------------------------
33
# 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
55
#
66
# Authors: Christopher Ariza
77
# Michael Scott Cuthbert
8+
# Mark Gotham
89
#
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
1011
# License: BSD, see license.txt
1112
# ------------------------------------------------------------------------------
1213

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.
1516
'''
1617

17-
__all__ = ['clercqTemperley', 'rtObjects', 'translate', 'testFiles']
18+
__all__ = ['clercqTemperley', 'rtObjects', 'translate', 'testFiles', 'tsvConverter']
1819

1920
from music21.romanText import clercqTemperley
2021
from music21.romanText import rtObjects
2122
from music21.romanText import testFiles
2223
from music21.romanText import translate
24+
from music21.romanText import tsvConverter

0 commit comments

Comments
 (0)