первая публикация бота
This commit is contained in:
22
setup.py
Normal file
22
setup.py
Normal 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",
|
||||
)
|
||||
Reference in New Issue
Block a user