Created
October 8, 2020 07:06
-
-
Save fcruzel/1bca98be571f6c19aa1eb03585d6288f to your computer and use it in GitHub Desktop.
rasa as a dev dependency
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
[tool.poetry] | |
name = "bot" | |
version = "0.1.0" | |
description = "Chatbot" | |
authors = ["cruzelante098 <[email protected]>"] | |
[[tool.poetry.source]] | |
url = "https://pypi.rasa.com/simple" | |
name = "rasa-repo" | |
secondary = true | |
[tool.poetry.dependencies] | |
python = ">=3.7,<3.8" | |
rasa = "^1.10" | |
rasa-x = "0.32.2" | |
spacy = "^2.3" | |
requests = "^2.24" | |
pandas = "^1.1" | |
unidecode = "^1.1" | |
python-dateutil = "^2.8" | |
numpy = "^1.19.2" | |
[tool.poetry.dev-dependencies] | |
bump2version = "^1.0" | |
pylint = "^2.6" | |
black = { version = "^20.8b1", allow-prereleases = true } | |
isort = "^5.5.4" | |
[build-system] | |
requires = ["poetry>=1.0.10"] | |
build-backend = "poetry.masonry.api" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment