2024-11-12 14:31:05 +01:00
|
|
|
[build-system]
|
|
|
|
requires = ["setuptools>=61.2"]
|
|
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
|
|
|
|
[project]
|
|
|
|
name = "Rivista"
|
|
|
|
version = "1.0"
|
|
|
|
description = "A private journal publication and a content management system for XMPP"
|
|
|
|
authors = [{name = "Schimon Zachary", email = "sch@fedora.email"}]
|
2024-11-12 14:43:43 +01:00
|
|
|
license = {text = "AGPL-3.0"}
|
2024-11-12 14:31:05 +01:00
|
|
|
classifiers = [
|
|
|
|
"Framework :: slixmpp",
|
|
|
|
"Intended Audience :: End Users/Desktop",
|
2024-11-12 14:43:43 +01:00
|
|
|
"License :: OSI Approved :: AGPL-3.0 License",
|
2024-11-12 14:31:05 +01:00
|
|
|
"Natural Language :: English",
|
|
|
|
"Programming Language :: Python",
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
"Topic :: Internet :: Extensible Messaging and Presence Protocol (XMPP)",
|
|
|
|
"Topic :: Internet :: WWW/HTTP :: Dynamic Content :: News/Diary",
|
|
|
|
"Topic :: Internet :: XMPP",
|
|
|
|
"Topic :: Office/Business :: News/Diary",
|
|
|
|
]
|
|
|
|
keywords = [
|
|
|
|
"atom",
|
|
|
|
"blog",
|
|
|
|
"cms",
|
2024-11-12 14:43:43 +01:00
|
|
|
"gemini",
|
2024-11-12 14:31:05 +01:00
|
|
|
"jabber",
|
|
|
|
"journal",
|
|
|
|
"news",
|
|
|
|
"ssg",
|
|
|
|
"syndication",
|
|
|
|
"xml",
|
|
|
|
"xmpp",
|
|
|
|
]
|
|
|
|
|
|
|
|
dependencies = [
|
|
|
|
"beautifulsoup4",
|
|
|
|
"fastapi",
|
2024-11-20 16:21:26 +01:00
|
|
|
"gmcapsule",
|
2024-11-12 14:31:05 +01:00
|
|
|
"lxml",
|
|
|
|
"markdown",
|
|
|
|
# "markdown-text-clean",
|
|
|
|
# "md2gemini",
|
|
|
|
"python-dateutil",
|
|
|
|
"slixmpp",
|
|
|
|
"tomli", # Python 3.10
|
|
|
|
"uvicorn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
Homepage = "https://schapps.woodpeckersnest.eu/rivista/"
|
|
|
|
Repository = "https://git.xmpp-it.net/sch/Rivista"
|
|
|
|
Issues = "https://git.xmpp-it.net/sch/Rivista/issues"
|
|
|
|
|
|
|
|
[project.scripts]
|
|
|
|
rivista = "rivista.__main__:main"
|
|
|
|
|
|
|
|
[tool.setuptools]
|
|
|
|
platforms = ["any"]
|
|
|
|
|
|
|
|
[tool.setuptools.package-data]
|
2024-11-20 16:21:26 +01:00
|
|
|
"*" = ["*.css", "*.js", "*.ico", "*.png", "*.svg", "*.toml", "*.xsl"]
|