-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
33 lines (31 loc) · 911 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "rumchat_actor"
version = "3.0.0"
keywords = ["rumble", "chat", "livestream", "bot"]
authors = [
{ name="Wilbur Jaywright", email="[email protected]" },
]
description = "Automatically interact with your Rumble livestream chats."
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"cocorum",
"moviepy",
"pyautogui",
"requests",
"selenium",
"standard-pipes", #Dead battery dependency of Talkey as of Python 3.13.0
"talkey",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
]
[project.urls]
Homepage = "https://github.com/thelabcat/rum-chat-actor"
Issues = "https://github.com/thelabcat/rumble-api-wrapper-py/issues"