feat: implement an RSS Discord bot with slash commands for feed management and Docker support.
This commit is contained in:
20
pyproject.toml
Normal file
20
pyproject.toml
Normal file
@@ -0,0 +1,20 @@
|
||||
[project]
|
||||
name = "rss-discord-bot"
|
||||
version = "1.0.0"
|
||||
description = "Discord bot that monitors RSS feeds and posts new entries"
|
||||
requires-python = ">=3.12"
|
||||
dependencies = [
|
||||
"discord.py>=2.4",
|
||||
"feedparser>=6.0",
|
||||
"python-dotenv>=1.0",
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
rss-bot = "src.main:main"
|
||||
|
||||
[build-system]
|
||||
requires = ["hatchling"]
|
||||
build-backend = "hatchling.build"
|
||||
|
||||
[tool.hatch.build.targets.wheel]
|
||||
packages = ["src"]
|
||||
Reference in New Issue
Block a user