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