2022-04-03 10:34:08 +01:00
|
|
|
[tool.poetry]
|
|
|
|
name = "rafael"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Personal Assistant bot"
|
|
|
|
authors = ["James Ravenscroft <ravenscroftj@gmail.com>"]
|
|
|
|
|
2022-04-03 11:36:54 +01:00
|
|
|
packages = [
|
|
|
|
{ include = "rafael", from="src" },
|
|
|
|
]
|
|
|
|
|
2022-04-03 10:34:08 +01:00
|
|
|
[tool.poetry.dependencies]
|
|
|
|
python = "^3.10"
|
|
|
|
Flask = "^2.1.1"
|
|
|
|
requests = "^2.27.1"
|
|
|
|
dokuwiki = "^1.3.2"
|
2022-11-06 17:39:16 +00:00
|
|
|
python-telegram-bot = "20.0a4"
|
2022-04-03 10:34:08 +01:00
|
|
|
todoist-api-python = "^1.1.1"
|
2022-04-03 11:36:54 +01:00
|
|
|
python-dotenv = "^0.20.0"
|
|
|
|
bs4 = "^0.0.1"
|
2022-11-06 07:14:33 +00:00
|
|
|
feedparser = "^6.0.10"
|
|
|
|
pendulum = "^2.1.2"
|
2022-11-06 18:42:51 +00:00
|
|
|
fastapi = "^0.86.0"
|
|
|
|
uvicorn = "^0.19.0"
|
2022-04-03 10:34:08 +01:00
|
|
|
|
|
|
|
[tool.poetry.dev-dependencies]
|
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|