]> git.saurik.com Git - apple/icu.git/blob - icuSources/python/icutools/databuilder/__init__.py
ICU-66108.tar.gz
[apple/icu.git] / icuSources / python / icutools / databuilder / __init__.py
1 # Copyright (C) 2018 and later: Unicode, Inc. and others.
2 # License & terms of use: http://www.unicode.org/copyright.html
3
4 from collections import namedtuple
5
6 LocalFile = namedtuple("LocalFile", ["dirname", "filename"])
7 SrcFile = namedtuple("SrcFile", ["filename"])
8 InFile = namedtuple("InFile", ["filename"])
9 TmpFile = namedtuple("TmpFile", ["filename"])
10 OutFile = namedtuple("OutFile", ["filename"])
11 PkgFile = namedtuple("PkgFile", ["filename"])
12
13 IcuTool = namedtuple("IcuTool", ["name"])
14 SystemTool = namedtuple("SystemTool", ["name"])
15
16 DepTarget = namedtuple("DepTarget", ["name"])