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
|
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=77.0"]
[project]
name = "pyserial-asyncio-fast"
license = "BSD-3-Clause"
license-files = ["LICENSE.txt", "CREDITS.rst"]
description = "Python Serial Port Extension - Asynchronous I/O support"
readme = "README.rst"
authors = [{ name = "pySerial-team" }]
requires-python = ">=3.9"
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Natural Language :: English',
'Operating System :: POSIX',
'Operating System :: MacOS :: MacOS X',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Topic :: Communications',
'Topic :: Software Development :: Libraries',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Terminals :: Serial',
]
dependencies = [
"pyserial",
]
dynamic = ["version"]
[project.urls]
"Source code" = "https://github.com/home-assistant-libs/pyserial-asyncio-fast"
"Documentation" = "http://pyserial-asyncio.readthedocs.io"
[tool.setuptools.dynamic]
version = { attr = "serial_asyncio_fast.__version__" }
|