forked from RasaHQ/rasa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
68 lines (62 loc) · 1.67 KB
/
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
from setuptools import setup
__version__ = None # Avoids IDE errors, but actual version is read from version.py
exec (open('rasa_nlu/version.py').read())
tests_requires = [
"pytest-pep8",
"pytest-services",
"pytest-cov",
"pytest-twisted",
"treq"
]
install_requires = [
"pathlib",
"cloudpickle",
"gevent",
"klein",
"boto3",
"typing",
"future",
"six",
"tqdm",
"requests",
"jsonschema",
"matplotlib",
"numpy>=1.13",
]
extras_requires = {
'test': tests_requires,
'spacy': ["sklearn", "scipy"],
'mitie': ["mitie"],
}
setup(
name='rasa_nlu',
packages=[
'rasa_nlu',
'rasa_nlu.utils',
'rasa_nlu.classifiers',
'rasa_nlu.emulators',
'rasa_nlu.extractors',
'rasa_nlu.featurizers',
'rasa_nlu.tokenizers',
],
classifiers=[
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6"
],
version=__version__,
install_requires=install_requires,
tests_require=tests_requires,
extras_require=extras_requires,
include_package_data=True,
description="rasa NLU a natural language parser for bots",
author='Alan Nichol',
author_email='[email protected]',
url="https://rasa.ai",
keywords=["NLP", "bots"],
download_url="https://github.com/RasaHQ/rasa_nlu/archive/{}.tar.gz".format(__version__)
)
print("Welcome to rasa!\n")
print("If any questions please visit documentation page http://rasa-nlu.readthedocs.io/en/latest/\n")
print("or join community chat on https://gitter.im/RasaHQ/rasa_nlu\n")