-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
16 lines (15 loc) · 1.23 KB
/
setup.py
File metadata and controls
16 lines (15 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
from setuptools import setup
setup(
name='nlpcloud',
version='1.1.47',
description='Python client for the NLP Cloud API',
long_description="NLP Cloud serves high performance pre-trained or custom models for NER, sentiment-analysis, classification, summarization, paraphrasing, grammar and spelling correction, keywords and keyphrases extraction, chatbot, product description and ad generation, intent classification, text generation, image generation, code generation, question answering, automatic speech recognition, machine translation, language detection, semantic search, semantic similarity, speech synthesis, tokenization, POS tagging, embeddings, and dependency parsing. It is ready for production, served through a REST API.\n\nThis is the Python client for the API.\n\nMore details here: https://nlpcloud.com\n\nDocumentation: https://docs.nlpcloud.com\n\nGithub: https://github.com/nlpcloud/nlpcloud-python",
packages=['nlpcloud'],
author='Julien Salinas',
author_email='all@juliensalinas.com',
license='MIT',
keywords=['api', 'NLP', 'ai', 'deep learning', 'machine learning',
'data science', 'nlpcloud'],
url='https://github.com/nlpcloud/nlpcloud-python',
install_requires=['requests']
)