22 lines
406 B
TOML
22 lines
406 B
TOML
[tool.poetry]
|
|
name = "notifier"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Rasmus Moorats <xx@nns.ee>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
rocketry = "^2.4.1"
|
|
feedparser = "^6.0.10"
|
|
requests = "^2.28.1"
|
|
python-dotenv = "^0.21.0"
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
bot = "notifier.main:main_sync"
|