-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
30 lines (28 loc) · 968 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cocorum"
version = "2.4.0"
keywords = ["rumble", "api", "wrapper", "livestream"]
authors = [
{ name="Wilbur Jaywright", email="[email protected]" },
]
description = "An unofficial Python wrapper for the Rumble Live Stream API v1.0 (beta)"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"beautifulsoup4",
"requests",
"sseclient-py", #Only for the Rumble chat SSE stream
]
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/rumble-api-wrapper-py"
Issues = "https://github.com/thelabcat/rumble-api-wrapper-py/issues"
"Rumble Live Stream API docs" = "https://rumblefaq.groovehq.com/help/how-to-use-rumble-s-live-stream-api"