-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (22 loc) · 964 Bytes
/
Copy pathsetup.py
File metadata and controls
23 lines (22 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
from kbsbot.nlpengine import __version__
setup(name='nlp_engine',
description="This microservice is intended to extract structured information from raw text, to identify intents and entities for KBS bot.",
long_description=open('README.rst').read(),
version=__version__,
packages=find_packages(),
zip_safe=False,
include_package_data=True,
dependency_links=["https://github.com/Runnerly/flakon.git#egg=flakon",
"git+https://github.com/facebookresearch/fastText#egg=fasttext"],
install_requires=["flask", "Flask-SQLAlchemy", "flask_cors"],
author="André Herrera",
author_ewmail="andreherrera97@hotmail.com",
license="MIT",
keywords=["chatbots", "microservices", "linked data", "nlp"],
entry_points={
'console_scripts': [
'nlp_engine = kbsbot.nlp_engine.run:app',
],
}
)