BukuBot/pyproject.toml

60 lines
1.6 KiB
TOML
Raw Normal View History

2024-04-05 17:36:01 +02:00
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "BukuBot"
version = "0.1"
description = "A bookmark bot powered by buku"
2024-04-05 17:36:01 +02:00
authors = [{name = "Schimon Zachary", email = "sch@fedora.email"}]
license = {text = "MIT"}
classifiers = [
"Framework :: slixmpp",
2024-04-05 17:36:01 +02:00
"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",
"bookmark",
2024-04-05 17:36:01 +02:00
"buku",
"chat",
"im",
"jabber",
"search",
2024-04-05 17:36:01 +02:00
"xmpp",
]
# urls = {Homepage = "https://git.xmpp-it.net/sch/BukuBot"}
2024-04-05 17:36:01 +02:00
dependencies = [
"buku",
"tomli", # Python 3.10
"tomli_w",
"slixmpp",
]
[project.urls]
Homepage = "http://bukubot.i2p/"
Repository = "https://git.xmpp-it.net/sch/BukuBot"
Issues = "https://codeberg.org/sch/BukuBot/issues"
2024-04-05 17:36:01 +02:00
# [project.readme]
# text = "BukuBot is a bookmark manager bot using buku. This program is primarily designed for XMPP"
2024-04-05 17:36:01 +02:00
[project.scripts]
bukubot = "bukubot.__main__:main"
2024-04-05 17:36:01 +02:00
[tool.setuptools]
platforms = ["any"]
2024-05-31 11:18:59 +02:00
2024-04-05 17:36:01 +02:00
[tool.setuptools.package-data]
"*" = ["*.ini", "*.csv", "*.toml", "*.svg"]