]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/python/icutools/databuilder/__init__.py
ICU-66108.tar.gz
[apple/icu.git] / icuSources / python / icutools / databuilder / __init__.py
diff --git a/icuSources/python/icutools/databuilder/__init__.py b/icuSources/python/icutools/databuilder/__init__.py
new file mode 100644 (file)
index 0000000..be93616
--- /dev/null
@@ -0,0 +1,16 @@
+# Copyright (C) 2018 and later: Unicode, Inc. and others.
+# License & terms of use: http://www.unicode.org/copyright.html
+
+from collections import namedtuple
+
+LocalFile = namedtuple("LocalFile", ["dirname", "filename"])
+SrcFile = namedtuple("SrcFile", ["filename"])
+InFile = namedtuple("InFile", ["filename"])
+TmpFile = namedtuple("TmpFile", ["filename"])
+OutFile = namedtuple("OutFile", ["filename"])
+PkgFile = namedtuple("PkgFile", ["filename"])
+
+IcuTool = namedtuple("IcuTool", ["name"])
+SystemTool = namedtuple("SystemTool", ["name"])
+
+DepTarget = namedtuple("DepTarget", ["name"])