-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
25 lines (25 loc) · 987 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import os
from setuptools import setup
setup(
name = "corenlp_pywrap",
version = "1.0.5",
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/1.0.5",
packages=['corenlp_pywrap'],
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 :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
],
)