первая публикация бота

This commit is contained in:
2026-03-31 22:42:04 +03:00
commit 8128fa34cb
14 changed files with 1042 additions and 0 deletions

22
setup.py Normal file
View File

@@ -0,0 +1,22 @@
from setuptools import setup, find_packages
setup(
name="matrix-rss-bot",
version="1.0.0",
description="Matrix RSS bot for publishing news from RSS feeds",
author="Your Name",
packages=find_packages(),
install_requires=[
"nio>=0.23.1",
"feedparser>=6.0.10",
"aiohttp>=3.9.1",
"Pillow>=10.1.0",
"pyyaml>=6.0.1",
],
entry_points={
"console_scripts": [
"matrix-rss-bot=bot.main:main",
],
},
python_requires=">=3.8",
)