Skip to content

Commit

Permalink
modified setup
Browse files Browse the repository at this point in the history
  • Loading branch information
boat-builder committed Aug 6, 2016
1 parent 4c450e7 commit 04f26ee
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,22 +6,24 @@
# README file and 2) it's easier to type in the README file than to put a raw
# string in below ...
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return '\n'.join(f.readlines())

setup(
name = "corenlp_pywrap",
version = "0.0.6",
version = "0.0.9",
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",
packages=['corenlp_pywrap'],
long_description='this is a long description',
long_description=read('README.md'),
classifiers=[
"Development Status :: 4 - Beta",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
Expand Down

0 comments on commit 04f26ee

Please sign in to comment.