eric6/ThirdParty/EditorConfig/editorconfig/__init__.py

Sun, 21 Apr 2019 10:44:57 +0200

author
Detlev Offenbach <detlev@die-offenbachs.de>
date
Sun, 21 Apr 2019 10:44:57 +0200
branch
setup.py
changeset 6963
1d763fbff600
parent 6942
2602857055c5
child 6996
7d5a103bdb76
permissions
-rw-r--r--

setup.py: development finished and moved to default branch.

"""EditorConfig Python Core"""

from editorconfig.versiontools import join_version

VERSION = (0, 12, 0, "final")

__all__ = ['get_properties', 'EditorConfigError', 'exceptions']

__version__ = join_version(VERSION)


def get_properties(filename):
    """Locate and parse EditorConfig files for the given filename"""
    handler = EditorConfigHandler(filename)
    return handler.get_configurations()


from editorconfig.handler import EditorConfigHandler
from editorconfig.exceptions import *

eric ide

mercurial