parser=argparse.ArgumentParser(description='This script builds unaccent.rules on standard output when given the contents of UnicodeData.txt and Latin-ASCII.xml given as arguments.')
parser.add_argument("--unicode-data-file",help="Path to formatted text file corresponding to UnicodeData.txt. See <http://unicode.org/Public/8.0.0/ucd/UnicodeData.txt>.",type=str,required=True,dest='unicodeDataFilePath')
parser.add_argument("--latin-ascii-file",help="Path to XML file from Unicode Common Locale Data Repository (CLDR) corresponding to Latin-ASCII transliterator (Latin-ASCII.xml). See <http://unicode.org/cldr/trac/export/12304/tags/release-28/common/transforms/Latin-ASCII.xml>.",type=str,dest='latinAsciiFilePath')
parser.add_argument("--unicode-data-file",help="Path to formatted text file corresponding to UnicodeData.txt.",type=str,required=True,dest='unicodeDataFilePath')
parser.add_argument("--latin-ascii-file",help="Path to XML file from Unicode Common Locale Data Repository (CLDR) corresponding to Latin-ASCII transliterator (Latin-ASCII.xml).",type=str,dest='latinAsciiFilePath')
parser.add_argument("--no-ligatures-expansion",help="Do not expand ligatures and do not use Unicode CLDR Latin-ASCII transliterator. By default, this option is not enabled and \"--latin-ascii-file\" argument is required. If this option is enabled, \"--latin-ascii-file\" argument is optional and ignored.",action="store_true",dest='noLigaturesExpansion')