forked from RasaHQ/rasa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
99 lines (90 loc) · 2.73 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import io
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
# Avoids IDE errors, but actual version is read from version.py
__version__ = None
exec(open('rasa_nlu/version.py').read())
# Get the long description from the README file
with io.open(os.path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
tests_requires = [
"pytest",
"pytest-pep8",
"pytest-services",
"pytest-cov",
"pytest-twisted<1.6",
"treq"
]
install_requires = [
"pathlib",
"cloudpickle",
"gevent",
"klein",
"boto3",
"packaging",
"typing",
"future",
"six",
"tqdm",
"requests",
"jsonschema",
"matplotlib",
"numpy>=1.13",
"simplejson",
"pyyaml",
]
extras_requires = {
'test': tests_requires,
'spacy': ["scikit-learn",
"sklearn-crfsuite",
"scipy",
"spacy>2.0",
],
'tensorflow': ["scikit-learn",
"tensorflow",
],
'mitie': ["mitie"],
}
setup(
name='rasa-nlu',
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
# supported python versions
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development :: Libraries",
],
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",
long_description=long_description,
long_description_content_type="text/markdown",
author='Rasa Technologies GmbH',
author_email='hi@rasa.com',
maintainer="Tom Bocklisch",
maintainer_email="tom@rasa.com",
license='Apache 2.0',
url="https://rasa.com",
keywords="nlp machine-learning machine-learning-library bot bots "
"botkit rasa conversational-agents conversational-ai chatbot"
"chatbot-framework bot-framework",
download_url="https://github.com/RasaHQ/rasa_nlu/archive/{}.tar.gz"
"".format(__version__),
project_urls={
'Bug Reports': 'https://github.com/rasahq/rasa_nlu/issues',
'Source': 'https://github.com/rasahq/rasa_nlu',
},
)
print("\nWelcome to Rasa NLU!")
print("If any questions please visit documentation "
"page https://nlu.rasa.com")
print("or join community chat on https://gitter.im/RasaHQ/rasa_nlu")