2024-01-18 21:57:49 +01:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools>=61.2"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "Slixfeed"
|
|
|
|
version = "1.0"
|
|
|
|
description = "RSS news bot for XMPP"
|
|
|
|
authors = [{name = "Schimon Zachary", email = "sch@fedora.email"}]
|
|
|
|
license = {text = "MIT"}
|
|
|
|
classifiers = [
|
|
|
|
"Framework :: slixmpp",
|
|
|
|
"Intended Audience :: End Users/Desktop",
|
|
|
|
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
|
|
|
|
"License :: OSI Approved :: MIT License",
|
|
|
|
"Natural Language :: English",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"Topic :: Communications :: Chat",
|
|
|
|
"Topic :: Internet :: Extensible Messaging and Presence Protocol (XMPP)",
|
|
|
|
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary",
|
|
|
|
"Topic :: Internet :: Instant Messaging",
|
|
|
|
"Topic :: Internet :: XMPP",
|
|
|
|
"Topic :: Office/Business :: News/Diary",
|
|
|
|
]
|
|
|
|
keywords = [
|
|
|
|
"atom",
|
|
|
|
"bot",
|
|
|
|
"chat",
|
|
|
|
"im",
|
|
|
|
"jabber",
|
2024-02-25 02:52:24 +01:00
|
|
|
"json",
|
2024-01-18 21:57:49 +01:00
|
|
|
"news",
|
|
|
|
"rdf",
|
|
|
|
"rss",
|
|
|
|
"syndication",
|
2024-02-25 02:52:24 +01:00
|
|
|
"xml",
|
2024-01-18 21:57:49 +01:00
|
|
|
"xmpp",
|
|
|
|
]
|
2024-01-20 18:06:55 +01:00
|
|
|
# urls = {Homepage = "https://gitgud.io/sjehuda/slixfeed"}
|
2024-01-18 21:57:49 +01:00
|
|
|
dependencies = [
|
|
|
|
"pyyaml",
|
|
|
|
"python-dateutil",
|
|
|
|
"aiohttp",
|
|
|
|
"bs4",
|
|
|
|
"feedparser",
|
|
|
|
"lxml",
|
2024-02-25 02:52:24 +01:00
|
|
|
"tomli", # Python 3.10
|
2024-02-04 20:07:32 +01:00
|
|
|
"tomli_w",
|
2024-01-18 21:57:49 +01:00
|
|
|
"slixmpp",
|
2024-01-22 13:48:00 +01:00
|
|
|
|
|
|
|
# Optional dependencies
|
|
|
|
# listed here (testing)
|
|
|
|
"html2text",
|
|
|
|
"pdfkit",
|
2024-02-25 02:52:24 +01:00
|
|
|
# "pysocks",
|
2024-01-22 13:48:00 +01:00
|
|
|
"readability-lxml",
|
2024-01-26 12:34:07 +01:00
|
|
|
"xml2epub",
|
2024-01-18 21:57:49 +01:00
|
|
|
]
|
|
|
|
|
2024-01-20 18:06:55 +01:00
|
|
|
[project.urls]
|
|
|
|
Homepage = "http://slixfeed.i2p/"
|
|
|
|
Repository = "https://gitgud.io/sjehuda/slixfeed"
|
|
|
|
Issues = "https://gitgud.io/sjehuda/slixfeed/issues"
|
|
|
|
|
|
|
|
|
2024-01-18 21:57:49 +01:00
|
|
|
[project.optional-dependencies]
|
2024-01-26 12:34:07 +01:00
|
|
|
file-export = ["html2text", "pdfkit", "xml2epub"]
|
2024-01-22 13:48:00 +01:00
|
|
|
proxy = ["pysocks"]
|
2024-01-20 18:06:55 +01:00
|
|
|
readability = ["readability-lxml"]
|
|
|
|
|
|
|
|
# This section returns pep508-identifier error
|
|
|
|
# [project.optional-dependencies]
|
|
|
|
# "export as markdown" = ["html2text"]
|
|
|
|
# "export as pdf" = ["pdfkit"]
|
|
|
|
# "readable html" = ["readability-lxml"]
|
2024-01-18 21:57:49 +01:00
|
|
|
|
|
|
|
# [project.readme]
|
|
|
|
# text = "Slixfeed is a news aggregator bot for online news feeds. This program is primarily designed for XMPP"
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
slixfeed = "slixfeed.__main__:main"
|
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
platforms = ["any"]
|
|
|
|
[tool.setuptools.package-data]
|
2024-02-04 20:07:32 +01:00
|
|
|
"*" = ["*.ini", "*.csv", "*.toml", "*.svg"]
|