-
Notifications
You must be signed in to change notification settings - Fork 39
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
Showing
3 changed files
with
32 additions
and
4 deletions.
There are no files selected for viewing
Empty file.
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
try: | ||
from .ArticutAPI import Articut | ||
except: | ||
from ArticutAPI import Articut |
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,16 +5,41 @@ | |
|
||
setuptools.setup( | ||
name="ArticutAPI", | ||
version="1.0.6", | ||
version="1.0.8", | ||
author="Droidtown Linguistic Tech. Co. Ltd.", | ||
author_email="[email protected]", | ||
description="Articut NLP system provides not only finest results on Chinese word segmentaion (CWS), Part-of-Speech tagging (POS) and Named Entity Recogintion tagging (NER), but also the fastest online API service in the NLP industry.", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/Droidtown/ArticutAPI", | ||
project_urls={ | ||
"Documentation": "https://api.droidtown.co/ArticutAPI/document/", | ||
"Source": "https://github.com/Droidtown/ArticutAPI", | ||
}, | ||
license="MIT License", | ||
keywords=[ | ||
"NLP", "NLU", "CWS", "POS", "NER", "AI", | ||
"artificial intelligence", | ||
"Chinese word segmentation", | ||
"computational linguistics", | ||
"language", | ||
"linguistics", | ||
"graphQL", | ||
"natural language", | ||
"natural language processing", | ||
"natural language understanding", | ||
"parsing", | ||
"part-of-speech-embdding", | ||
"part-of-speech-tagger", | ||
"pos-tagger", | ||
"pos-tagging", | ||
"syntax", | ||
"tagging", | ||
"text analytics" | ||
], | ||
packages=setuptools.find_packages(), | ||
include_package_data=True, | ||
install_requires=["requests >= 2.25.1"], | ||
install_requires=["requests >= 2.25.1", "graphene"], | ||
classifiers=[ | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3 :: Only", | ||
|
@@ -37,6 +62,5 @@ | |
"Topic :: Text Processing :: Filters", | ||
"Topic :: Utilities", | ||
], | ||
python_requires='>=3.6.1', | ||
python_requires=">=3.6.1", | ||
) | ||
|