Skip to content
Open
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
bb54099
Merge branch 'develop'.
andrecunha Mar 4, 2015
5e99310
FIX: `extras_require` on setup must be a dictionary
gilzoide Nov 12, 2017
7bfcbb4
Added support for Stanford NN parser with universal dependencies.
andrecunha Mar 4, 2015
6f7acbe
Added normalized version of corpus.conll.
andrecunha Mar 4, 2015
8eb9554
Fixed bug in file loading if analyzing file from another directory.
andrecunha Mar 5, 2015
ba0d6fc
Fixed possessive, prep, pobj, pcomp, nn, and prep relations. Added su…
andrecunha Mar 5, 2015
a1f290c
Fixed problems with spelling of the ROOT relation.
andrecunha Mar 5, 2015
b5149e8
Fixed quantmod -> advmod.
andrecunha Mar 5, 2015
93d6f82
Fixed file loading in test.py.
andrecunha Mar 5, 2015
41de9d2
Added initial version of full port to universal dependencies. Added c…
andrecunha Mar 6, 2015
913dd7c
Moved parser interfacing to own file.
andrecunha Mar 6, 2015
0ed3fcf
Fixed copyright notice.
andrecunha Mar 6, 2015
bd4bce6
Updated copyright notice.
andrecunha Mar 6, 2015
7b58be5
Changed the use of tag to ctag, except for VBG uses.
andrecunha Mar 9, 2015
767ab74
Added support for nmods modifying AdjPs.
andrecunha Mar 9, 2015
d8ca216
Updated test files.
andrecunha Mar 9, 2015
bfdf5ca
Moved rules to rules.universal.
andrecunha Mar 12, 2015
0ac3913
Added initial version of multilanguage support.
andrecunha Mar 12, 2015
1e69bb8
Adjusted run and examine for the new scenario.
andrecunha Mar 12, 2015
53b637c
Moved English-specific feature in NounPhraseRuleset to en.
andrecunha Mar 12, 2015
423882c
Removed unnecessary statement.
andrecunha Mar 13, 2015
4114740
Added support to traditional Stanford Parser with normalization.
andrecunha Mar 13, 2015
8f35d6d
Added note.
andrecunha Mar 13, 2015
b61d88f
Minor code improvement.
andrecunha Mar 13, 2015
4733f57
Removed unnecessary raise statement.
andrecunha Mar 13, 2015
864c374
Added initial version of tree transformations for pt.
andrecunha Jul 17, 2015
3aecccb
Moved parsers.py to idd3 folder. Adjustments to newer version of NLTK.
andrecunha Jul 17, 2015
26b3afd
Merge branch 'universal-en' of https://github.com/gilzoide/idd3 into …
gilzoide Nov 12, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,9 @@ def read(filename):
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
],
install_requires = ['nltk >= 3.0.0',
],
extras_require = ['termcolor >= 1.1.0', ]
install_requires=['nltk >= 3.0.0',
],
extras_require={
'termcolor': 'termcolor >= 1.1.0',
},
)