forked from RasaHQ/rasa
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
38 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
# pytest PEP8 configuration | ||
[tool:pytest] | ||
pep8maxlinelength = 120 | ||
pep8maxlinelength = 120 | ||
pep8ignore = | ||
docs/conf.py ALL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,24 @@ | ||
from setuptools import setup | ||
|
||
setup( | ||
name = 'rasa_nlu', | ||
packages = [ | ||
'rasa_nlu', | ||
'rasa_nlu.classifiers', | ||
'rasa_nlu.emulators', | ||
'rasa_nlu.extractors', | ||
'rasa_nlu.featurizers', | ||
'rasa_nlu.interpreters', | ||
'rasa_nlu.trainers', | ||
'rasa_nlu.tokenizers' | ||
], | ||
package_dir = {'rasa_nlu': 'src'}, | ||
version = '0.3.0', | ||
install_requires=[ | ||
name='rasa_nlu', | ||
packages=[ | ||
'rasa_nlu', | ||
'rasa_nlu.classifiers', | ||
'rasa_nlu.emulators', | ||
'rasa_nlu.extractors', | ||
'rasa_nlu.featurizers', | ||
'rasa_nlu.interpreters', | ||
'rasa_nlu.trainers', | ||
'rasa_nlu.tokenizers' | ||
], | ||
package_dir={'rasa_nlu': 'src'}, | ||
version='0.3.0', | ||
install_requires=[ | ||
'pytest' | ||
], | ||
description = "rasa_nlu: a natural language parser for bots", | ||
author = 'Alan Nichol', | ||
author_email = '[email protected]', | ||
url="http://rasa.ai" | ||
], | ||
description="rasa_nlu: a natural language parser for bots", | ||
author='Alan Nichol', | ||
author_email='[email protected]', | ||
url="http://rasa.ai" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
class Interpreter(object): | ||
def parse(self, text): | ||
raise NotImplementedError() | ||
raise NotImplementedError() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters