mirror of
https://github.com/onyx-and-iris/OBS-to-XAir.git
synced 2026-01-02 03:27:50 +00:00
10 lines
213 B
Python
10 lines
213 B
Python
from setuptools import setup
|
|
|
|
setup(
|
|
name="xair-obs",
|
|
version="0.0.1",
|
|
description="Syncs Xair states to OBS scenes",
|
|
install_requires=["obsws-python", "xair-api"],
|
|
python_requires=">=3.10",
|
|
)
|