Last active
October 2, 2020 08:56
-
-
Save fcruzel/4a46e9387a50c7ea339adaac5421001f to your computer and use it in GitHub Desktop.
poetry pyproject.toml
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