Files
sdk/runtime/tools/wiki/CustomShellSessionPygmentsLexer/setup.py
T
Vyacheslav Egorov ab56c2f841 [runtime/docs] Add custom lexer for shell sessions in runtime wiki.
This was missing from the previous wiki related commit.

TBR=aam@google.com

Change-Id: Ib68ead3bab2841bb8e02cb93fd71bce7515ff335
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/134285
Reviewed-by: Vyacheslav Egorov <vegorov@google.com>
2020-02-04 09:16:52 +00:00

16 lines
458 B
Python

#
# Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
# for details. All rights reserved. Use of this source code is governed by a
# BSD-style license that can be found in the LICENSE file.
#
from setuptools import setup, find_packages
setup(
name='custom-shell-session',
packages=find_packages(),
entry_points="""
[pygments.lexers]
custom-shell-session = custom_shell_session.lexer:CustomShellSessionLexer
""",
)