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
|
[metadata]
name = pymonoprice
url = https://github.com/etsinko/pymonoprice
license = MIT
license_file = LICENSE.txt
description = Python API for talking to Monoprice 6-zone amplifier
long_description = file: README.md
long_description_content_type = text/markdown
author = Egor Tsinko
author_email = etsinko@gmail.com
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
[options]
packages =
pymonoprice
python_requires >= 3.9
zip_safe = True
install_requires =
pyserial>=3.4
pyserial-asyncio-fast>=0.16
[options.package_data]
pymonoprice = py.typed
[mypy]
python_version = 3.10
disallow_any_decorated = true
disallow_any_explicit = true
disallow_any_generics = true
disallow_incomplete_defs = true
disallow_subclassing_any = true
disallow_untyped_calls = true
disallow_untyped_decorators = true
disallow_untyped_defs = true
no_implicit_optional = true
show_error_codes = true
strict_equality = true
warn_no_return = true
warn_redundant_casts = true
warn_unreachable = true
warn_unused_configs = True
warn_unused_ignores = true
[mypy-serial]
ignore_missing_imports = True
[mypy-serial_asyncio_fast]
ignore_missing_imports = True
|