mirror of
https://codeberg.org/sch/BukuBot
synced 2024-11-17 11:38:41 +01:00
77 lines
2 KiB
TOML
77 lines
2 KiB
TOML
|
[build-system]
|
||
|
requires = ["setuptools>=61.2"]
|
||
|
build-backend = "setuptools.build_meta"
|
||
|
|
||
|
[project]
|
||
|
name = "bukuxmpp"
|
||
|
version = "1.0"
|
||
|
description = "buku bot for XMPP"
|
||
|
authors = [{name = "Schimon Zachary", email = "sch@fedora.email"}]
|
||
|
license = {text = "MIT"}
|
||
|
classifiers = [
|
||
|
"Framework :: bukuxmpp",
|
||
|
"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 = [
|
||
|
"bot",
|
||
|
"buku",
|
||
|
"chat",
|
||
|
"im",
|
||
|
"jabber",
|
||
|
"xmpp",
|
||
|
]
|
||
|
# urls = {Homepage = "https://gitgud.io/sjehuda/buku-xmpp"}
|
||
|
dependencies = [
|
||
|
"buku",
|
||
|
"tomli", # Python 3.10
|
||
|
"tomli_w",
|
||
|
"slixmpp",
|
||
|
|
||
|
# Optional dependencies
|
||
|
# listed here (testing)
|
||
|
"html2text",
|
||
|
"pdfkit",
|
||
|
# "pysocks",
|
||
|
"readability-lxml",
|
||
|
"xml2epub",
|
||
|
]
|
||
|
|
||
|
[project.urls]
|
||
|
Homepage = "http://bukuxmpp.i2p/"
|
||
|
Repository = "https://gitgud.io/sjehuda/buku-xmpp"
|
||
|
Issues = "https://gitgud.io/sjehuda/buku-xmpp/issues"
|
||
|
|
||
|
|
||
|
[project.optional-dependencies]
|
||
|
file-export = ["html2text", "pdfkit", "xml2epub"]
|
||
|
proxy = ["pysocks"]
|
||
|
readability = ["readability-lxml"]
|
||
|
|
||
|
# This section returns pep508-identifier error
|
||
|
# [project.optional-dependencies]
|
||
|
# "export as markdown" = ["html2text"]
|
||
|
# "export as pdf" = ["pdfkit"]
|
||
|
# "readable html" = ["readability-lxml"]
|
||
|
|
||
|
# [project.readme]
|
||
|
# text = "buku-xmpp is a bookmark manager bot using buku. This program is primarily designed for XMPP"
|
||
|
|
||
|
[project.scripts]
|
||
|
bukuxmpp = "bukuxmpp.__main__:main"
|
||
|
|
||
|
[tool.setuptools]
|
||
|
platforms = ["any"]
|
||
|
[tool.setuptools.package-data]
|
||
|
"*" = ["*.ini", "*.csv", "*.toml", "*.svg"]
|