22 lines
523 B
Python
22 lines
523 B
Python
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",
|
|
) |