Skip to content

Commit

Permalink
更新 setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
EclairCJ committed Jan 21, 2021
1 parent b183603 commit 47b2096
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 4 deletions.
Empty file added ArticutAPI/Toolkit/__init__.py
Empty file.
4 changes: 4 additions & 0 deletions ArticutAPI/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
try:
from .ArticutAPI import Articut
except:
from ArticutAPI import Articut
32 changes: 28 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -37,6 +62,5 @@
"Topic :: Text Processing :: Filters",
"Topic :: Utilities",
],
python_requires='>=3.6.1',
python_requires=">=3.6.1",
)

0 comments on commit 47b2096

Please sign in to comment.