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 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
from setuptools import setup, find_packages
exec(open('samsung_mdc/version.py').read())
requires = [
'click', # tested: click >=7,<=8
'jinja2',
]
serial_requires = [
'pyserial-asyncio' # tested: pyserial==3.5; pyserial-asyncio==0.5
]
# TODO: leaving serial in default dependencies
# just not to make README and pipx usage too complicated
requires += serial_requires
test_requires = [
'pytest',
'pytest-asyncio',
'nest-asyncio',
]
setup(
name='python-samsung-mdc',
version=__version__, # noqa
description=('Samsung Multiple Display Control (MDC) '
'protocol implementation (asyncio library + CLI interface)'),
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
license='BSD-3-Clause', # https://spdx.org/licenses/BSD-3-Clause.html
license_files=['LICENSE'],
classifiers=[
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Intended Audience :: Telecommunications Industry',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Topic :: Multimedia :: Video :: Display',
'Topic :: Home Automation',
'Topic :: Utilities',
],
python_requires='>=3.7,<4.0',
author='Victor Gavro',
author_email='vgavro@gmail.com',
url='http://github.com/vgavro/samsung-mdc',
keywords=['samsung', 'mdc'],
packages=find_packages(),
install_requires=requires,
extras_require={
'test': test_requires,
'serial': serial_requires,
'all': serial_requires,
},
entry_points={
'console_scripts': [
'samsung-mdc=samsung_mdc.cli:cli',
],
},
)
|