ab56c2f841
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>
16 lines
458 B
Python
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
|
|
""",
|
|
)
|