forked from hhsecond/corenlp_pywrap
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
33c0905
commit c4f0676
Showing
1 changed file
with
7 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,25 +5,24 @@ | |
# Used for the long_description. It's nice, because now 1) we have a top level | ||
# README file and 2) it's easier to type in the README file than to put a raw | ||
# string in below ... | ||
def read(fname): | ||
with open(os.path.join(os.path.dirname(__file__), fname)) as f: | ||
return '\n'.join(f.readlines()) | ||
|
||
setup( | ||
name = "corenlp_pywrap", | ||
version = "0.0.9", | ||
version = "1.0.0", | ||
author = "hhsecond", | ||
author_email = "[email protected]", | ||
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/0.0.9", | ||
download_url = "https://www.github.com/hhsecond/corenlp_pywrap/tarball/1.0.0", | ||
packages=['corenlp_pywrap'], | ||
long_description=read('README.md'), | ||
long_description='Production Ready version equiped with basic'\ | ||
'output fetch of stanfornlp and custom arrange function, '\ | ||
'for more Info - '\ | ||
'CheckItOut: https://github.com/hhsecond/corenlp_pywrap', | ||
classifiers=[ | ||
"Development Status :: 2 - Pre-Alpha", | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Science/Research", | ||
"Topic :: Scientific/Engineering :: Artificial Intelligence", | ||
"License :: OSI Approved :: MIT License", | ||
|