-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (30 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
32 lines (30 loc) · 1.01 KB
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cocorum"
version = "2.15.3"
keywords = ["rumble", "api", "wrapper", "livestream"]
authors = [
{ name="Wilbur Jaywright", email="zargulthewizard@outlook.com" },
]
description = "An unofficial Python wrapper for the Rumble Live Stream API v1.0 (beta)"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"beautifulsoup4",
"json-five",
"requests",
"requests-sse", #Only for the Rumble chat SSE stream
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Development Status :: 4 - Beta",
]
[project.urls]
Homepage = "https://github.com/thelabcat/cocorum"
Issues = "https://github.com/thelabcat/cocorum/issues"
Documentation = "https://thelabcat.github.io/cocorum/"
"Rumble Live Stream API docs" = "https://rumblefaq.groovehq.com/help/how-to-use-rumble-s-live-stream-api"