[python-pynlpl] branch master updated (a39eca9 -> be9ef31)
Maarten van Gompel
proycon-guest at moszumanska.debian.org
Wed Dec 6 21:18:31 UTC 2017
This is an automated email from the git hooks/post-receive script.
proycon-guest pushed a change to branch master
in repository python-pynlpl.
from a39eca9 updated to new upstream
new dc61996 New upstream version 1.2.5
new be9ef31 Updated version 1.2.5 from 'upstream/1.2.5'
The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "adds" were already present in the repository and have only
been added to this reference.
Summary of changes:
PKG-INFO | 24 +-
PyNLPl.egg-info/PKG-INFO | 24 +-
PyNLPl.egg-info/SOURCES.txt | 31 +-
PyNLPl.egg-info/requires.txt | 4 +-
README.rst | 21 +-
pynlpl/__init__.py | 2 +-
pynlpl/algorithms.py | 11 +
pynlpl/build/pynlpl/algorithms.py | 54 -
pynlpl/docs/conf.py | 199 --
pynlpl/evaluation.py | 43 +-
pynlpl/formats/folia.py | 754 ++++++--
pynlpl/formats/fql.py | 18 +-
pynlpl/{mt => tests/FoLiA/foliatools}/__init__.py | 0
pynlpl/tests/FoLiA/foliatools/alpino2folia.py | 175 ++
pynlpl/tests/FoLiA/foliatools/cgn2folia.py | 85 +
pynlpl/tests/FoLiA/foliatools/dcoi2folia.py | 21 +
.../tests/FoLiA/foliatools/folia2annotatedtxt.py | 252 +++
pynlpl/tests/FoLiA/foliatools/folia2columns.py | 298 +++
pynlpl/tests/FoLiA/foliatools/folia2dcoi.py | 21 +
pynlpl/tests/FoLiA/foliatools/folia2html.py | 23 +
pynlpl/tests/FoLiA/foliatools/folia2rst.py | 161 ++
pynlpl/tests/FoLiA/foliatools/folia2txt.py | 186 ++
pynlpl/tests/FoLiA/foliatools/foliacat.py | 115 ++
pynlpl/tests/FoLiA/foliatools/foliacorrect.py | 175 ++
pynlpl/tests/FoLiA/foliatools/foliacount.py | 174 ++
pynlpl/tests/FoLiA/foliatools/foliafreqlist.py | 162 ++
pynlpl/tests/FoLiA/foliatools/foliaid.py | 145 ++
pynlpl/tests/FoLiA/foliatools/foliamerge.py | 178 ++
pynlpl/tests/FoLiA/foliatools/foliaquery.py | 172 ++
pynlpl/tests/FoLiA/foliatools/foliaquery1.py | 180 ++
.../tests/FoLiA/foliatools/foliasetdefinition.py | 93 +
pynlpl/tests/FoLiA/foliatools/foliaspec.py | 563 ++++++
pynlpl/tests/FoLiA/foliatools/foliaspec2json.py | 34 +
pynlpl/tests/FoLiA/foliatools/foliatextcontent.py | 359 ++++
pynlpl/tests/FoLiA/foliatools/foliatree.py | 179 ++
pynlpl/tests/FoLiA/foliatools/foliavalidator.py | 150 ++
pynlpl/tests/FoLiA/foliatools/rst2folia.py | 538 ++++++
pynlpl/tests/FoLiA/foliatools/xslt.py | 124 ++
pynlpl/tests/FoLiA/schemas/generaterng.py | 47 +
pynlpl/tests/FoLiA/setup.py | 63 +
pynlpl/tests/evaluation.py | 15 +-
pynlpl/tests/folia.py | 1979 +++++++++++++++++---
pynlpl/tests/fql.py | 34 +-
requirements.txt | 3 +
setup.cfg | 1 -
setup.py | 20 +-
46 files changed, 7162 insertions(+), 748 deletions(-)
delete mode 100644 pynlpl/build/pynlpl/algorithms.py
delete mode 100644 pynlpl/docs/conf.py
copy pynlpl/{mt => tests/FoLiA/foliatools}/__init__.py (100%)
create mode 100755 pynlpl/tests/FoLiA/foliatools/alpino2folia.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/cgn2folia.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/dcoi2folia.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/folia2annotatedtxt.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/folia2columns.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/folia2dcoi.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/folia2html.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/folia2rst.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/folia2txt.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/foliacat.py
create mode 100644 pynlpl/tests/FoLiA/foliatools/foliacorrect.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/foliacount.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/foliafreqlist.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/foliaid.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/foliamerge.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/foliaquery.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/foliaquery1.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/foliasetdefinition.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/foliaspec.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/foliaspec2json.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/foliatextcontent.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/foliatree.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/foliavalidator.py
create mode 100755 pynlpl/tests/FoLiA/foliatools/rst2folia.py
create mode 100644 pynlpl/tests/FoLiA/foliatools/xslt.py
create mode 100755 pynlpl/tests/FoLiA/schemas/generaterng.py
create mode 100755 pynlpl/tests/FoLiA/setup.py
create mode 100644 requirements.txt
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/python-pynlpl.git
More information about the debian-science-commits
mailing list