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 33 34 35
|
# Copyright 2022 - 2022, Martijn Braam and the OpenAtem contributors
# SPDX-License-Identifier: LGPL-3.0-only
from setuptools import setup
setup(
name='openswitcher-proxy',
version='0.13.0',
packages=['openswitcher_proxy'],
url='https://git.sr.ht/~martijnbraam/pyatem',
license='LGPL3',
author='Martijn Braam',
author_email='martijn@brixit.nl',
description='Proxy for ATEM switchers',
requires=['pyatem', 'tomli >= 1.1.0 ; python_version < "3.11"'],
extras_require={
'midi': ['python-rtmidi'],
'mqtt': ['paho-mqtt'],
},
classifiers=[
'License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Operating System :: POSIX :: Linux',
],
entry_points={
'console_scripts': ['openswitcher-proxy=openswitcher_proxy.__main__:main'],
},
)
|