ase:
__init__.py
new lines 17-
from ase.calculators import LennardJones, \
    EMT, ASAP, Siesta, Dacapo, Vasp, Turbomole

ase/io:
__init__.py
new line 44
    TURBOMOLE coord file       (filename==='coord')
new lines 145-
    if format == 'turbomole':
        from ase.io.turbomole import read_turbomole
        return read_turbomole(filename)
new line 184
    TURBOMOLE coord file       turbomole
new lines 267-
    elif format == 'tmol':
        from ase.io.turbomole import write_turbomole
        write_turbomole(filename, images)
        return
new lines 349-
    if lines[0].startswith('$coord'):
        return 'turbomole'

NEW FILE:
ase/io/turbomole.py

ase/calculators:
__init__.py
new line 10
    from ase.calculators.turbomole import Turbomole

NEW FILE:
ase/calculators/turbomole.py


