Skip to content

Commit e05029d

Browse files
committed
added fix for some macs
1 parent 3de4e4e commit e05029d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
frog = Frog(FrogOptions(parser=True,xmlout=True))
1313
output = frog.process("Dit is een FoLiA test.")
14-
#output is now no longer a string but an instance of folia.Document, provided by the FoLiA library in PyNLPl (pynlpl.formats.folia)
14+
#output is now no longer a string but an instance of folia.Document, provided by the FoLiA library in FoLiaPy
1515
print("FOLIA OUTPUT=")
1616
print(output.xmlstring())
1717

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
includedirs.append("/usr/local/opt/icu4c/include")
1515
libdirs.append("/usr/local/opt/libxml2/lib")
1616
includedirs.append("/usr/local/opt/libxml2/include")
17+
includedirs.append("/usr/local/opt/libxml2/include/libxml2")
1718

1819
#add some common default paths
1920
includedirs += ['/usr/include/', '/usr/include/libxml2','/usr/local/include/' ]
@@ -43,7 +44,7 @@
4344

4445
setup(
4546
name = 'python-frog',
46-
version = '0.4.0',
47+
version = '0.4.1',
4748
author = "Maarten van Gompel",
4849
author_email = "proycon@anaproy.nl",
4950
description = ("Python binding to FROG, an NLP suite for Dutch doing part-of-speech tagging, lemmatisation, morphological analysis, named-entity recognition, shallow parsing, and dependency parsing."),

0 commit comments

Comments
 (0)