mirror of
https://github.com/onyx-and-iris/OBS-to-XAir.git
synced 2025-01-18 04:40:49 +00:00
96f0e0f789
mapping.toml added. tomli/tomllib compatibility layer added
14 lines
286 B
Python
14 lines
286 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",
|
|
"tomli >= 2.0.1;python_version < '3.11'",
|
|
],
|
|
python_requires=">=3.10",
|
|
)
|