2026-05-05 00:56:19 +02:00
|
|
|
[build-system]
|
2026-05-05 01:01:14 +02:00
|
|
|
requires = ["setuptools>=42"]
|
|
|
|
|
build-backend = "setuptools.build_meta"
|
2026-05-05 00:56:19 +02:00
|
|
|
|
|
|
|
|
[project]
|
|
|
|
|
name = "veretube-bot"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
description = "Python bot library for veretube sync channels"
|
2026-05-05 01:17:24 +02:00
|
|
|
readme = "README.md"
|
|
|
|
|
license = "MIT"
|
2026-05-05 00:56:19 +02:00
|
|
|
requires-python = ">=3.10"
|
2026-05-05 01:17:24 +02:00
|
|
|
authors = [
|
|
|
|
|
{ name = "veretube", email = "faceeatingtumor@gmail.com" },
|
|
|
|
|
]
|
|
|
|
|
keywords = ["veretube", "cytube", "bot", "chat", "socketio"]
|
|
|
|
|
classifiers = [
|
|
|
|
|
"Programming Language :: Python :: 3",
|
|
|
|
|
"Programming Language :: Python :: 3.10",
|
|
|
|
|
"Programming Language :: Python :: 3.11",
|
|
|
|
|
"Programming Language :: Python :: 3.12",
|
|
|
|
|
"Programming Language :: Python :: 3.13",
|
|
|
|
|
"Operating System :: OS Independent",
|
|
|
|
|
"Topic :: Communications :: Chat",
|
|
|
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
|
|
|
]
|
2026-05-05 00:56:19 +02:00
|
|
|
dependencies = [
|
|
|
|
|
"python-socketio[client]>=5.0",
|
|
|
|
|
"requests>=2.28",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[project.optional-dependencies]
|
2026-05-05 01:17:24 +02:00
|
|
|
dev = ["pytest", "build", "twine"]
|
|
|
|
|
|
|
|
|
|
[project.urls]
|
|
|
|
|
Homepage = "https://veretium.com"
|
|
|
|
|
Source = "https://veretium.com/w0zard/veretube_bot_lib"
|
2026-05-05 00:56:19 +02:00
|
|
|
|
|
|
|
|
[tool.setuptools.packages.find]
|
|
|
|
|
where = ["."]
|
|
|
|
|
include = ["veretube_bot*"]
|