Skip to content

Commit

Permalink
1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
boat-builder committed Aug 13, 2016
1 parent 08d5ec4 commit 07908e8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
@@ -1,7 +1,7 @@
# corenlp_pywrap 1.0.3
# corenlp_pywrap 1.0.4
######Powerfull python wrapper for Stanford CoreNLP project

[![GitHub release](https://img.shields.io/badge/release-1.0.3-green.svg?maxAge=2592000)](https://github.com/hhsecond/corenlp_pywrap/releases) [![license](https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000)](https://github.com/hhsecond/corenlp_pywrap/blob/master/LICENCE.txt) [![PyPI](https://img.shields.io/pypi/wheel/Django.svg?maxAge=2592000)](https://pypi.python.org/pypi/corenlp_pywrap)
[![GitHub release](https://img.shields.io/badge/release-1.0.4-green.svg?maxAge=2592000)](https://github.com/hhsecond/corenlp_pywrap/releases) [![license](https://img.shields.io/github/license/mashape/apistatus.svg?maxAge=2592000)](https://github.com/hhsecond/corenlp_pywrap/blob/master/LICENCE.txt) [![PyPI](https://img.shields.io/pypi/wheel/Django.svg?maxAge=2592000)](https://pypi.python.org/pypi/corenlp_pywrap)


##CoreNLP v3.6.0
Expand Down
3 changes: 2 additions & 1 deletion corenlp_pywrap/pywrap.py
Expand Up @@ -118,7 +118,8 @@ def process_sentences(sentences):
'characterOffsetEnd':[],
'speaker':[],
'word':[],
'after':[]
'after':[],
'normalizedNER':[]
}
for sentence in sentences:
index = new_index
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Expand Up @@ -2,15 +2,15 @@
from setuptools import setup
setup(
name = "corenlp_pywrap",
version = "1.0.3",
version = "1.0.4",
author = "hhsecond",
author_email = "sherinct@live.com",
description = ("A powerful python wraper for Stanford CoreNLP"),
license = "MIT",
keywords = "stanford corenlp wrapper",
install_requires=['requests'],
url = "https://www.github.com/hhsecond/corenlp_pywrap",
download_url = "https://www.github.com/hhsecond/corenlp_pywrap/tarball/1.0.3",
download_url = "https://www.github.com/hhsecond/corenlp_pywrap/tarball/1.0.4",
packages=['corenlp_pywrap'],
long_description='Production Ready version equiped with basic'\
'output fetch of stanfornlp and custom arrange function, '\
Expand Down

0 comments on commit 07908e8

Please sign in to comment.