2022-11-13 10:07:08 +00:00
|
|
|
[tool.poetry]
|
|
|
|
name = "streamlabsio"
|
2023-08-19 21:59:14 +01:00
|
|
|
version = "1.1.1"
|
2022-11-13 10:07:08 +00:00
|
|
|
description = "Get real time Twitch/Youtube events through Streamlabs SocketIO API"
|
|
|
|
authors = ["onyx-and-iris <code@onyxandiris.online>"]
|
|
|
|
license = "MIT"
|
2022-11-13 12:58:18 +00:00
|
|
|
readme = "README.md"
|
|
|
|
repository = "https://github.com/onyx-and-iris/streamlabs-socketio-py"
|
2022-11-13 10:07:08 +00:00
|
|
|
|
|
|
|
[tool.poetry.dependencies]
|
2023-06-28 02:49:15 +01:00
|
|
|
python = "^3.8"
|
2022-11-13 10:07:08 +00:00
|
|
|
tomli = { version = "^2.0.1", python = "<3.11" }
|
|
|
|
python-engineio = "3.14.2"
|
2023-06-28 02:49:15 +01:00
|
|
|
python-socketio = { version = "4.6.0", extras = ["client"] }
|
2022-11-13 10:07:08 +00:00
|
|
|
observable = "^1.0.3"
|
|
|
|
|
2023-08-27 19:16:53 +01:00
|
|
|
[tool.poetry.group.dev.dependencies]
|
2022-11-13 10:07:08 +00:00
|
|
|
black = "^22.10.0"
|
|
|
|
isort = "^5.10.1"
|
2023-06-28 02:49:15 +01:00
|
|
|
tox = "^4.6.3"
|
|
|
|
pytest = "^7.4.0"
|
|
|
|
|
2022-11-13 10:07:08 +00:00
|
|
|
|
|
|
|
[build-system]
|
|
|
|
requires = ["poetry-core>=1.0.0"]
|
|
|
|
build-backend = "poetry.core.masonry.api"
|
2023-06-28 02:49:15 +01:00
|
|
|
|
|
|
|
[tool.poetry.scripts]
|
|
|
|
debug = "scripts:ex_debug"
|
|
|
|
|
|
|
|
[tool.tox]
|
|
|
|
legacy_tox_ini = """
|
|
|
|
[tox]
|
|
|
|
envlist = py38,py39,py310,py311
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
allowlist_externals = poetry
|
|
|
|
commands =
|
|
|
|
poetry install -v
|
|
|
|
poetry run pytest tests/
|
|
|
|
"""
|