• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# -*- mode: python; -*-
2#
3# Description:
4#   Extension to ast that allow ast -> python code generation.
5
6package(default_visibility = ["//visibility:public"])
7
8licenses(["notice"])  # New BSD
9
10exports_files(["LICENSE"])
11
12py_library(
13    name = "com_github_andreif_codegen",
14    srcs = glob(["codegen.py"]),
15    srcs_version = "PY3",
16)
17