|
| 1 | +[build-system] |
| 2 | +build-backend = "setuptools.build_meta" |
| 3 | +requires = ["setuptools>=77.0"] |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "pyserial-asyncio-fast" |
| 7 | +license = "BSD-3-Clause" |
| 8 | +license-files = ["LICENSE.txt", "CREDITS.rst"] |
| 9 | +description = "Python Serial Port Extension - Asynchronous I/O support" |
| 10 | +readme = "README.rst" |
| 11 | +authors = [{ name = "pySerial-team" }] |
| 12 | +requires-python = ">=3.9" |
| 13 | +classifiers = [ |
| 14 | + 'Development Status :: 5 - Production/Stable', |
| 15 | + 'Intended Audience :: Developers', |
| 16 | + 'Intended Audience :: End Users/Desktop', |
| 17 | + 'Natural Language :: English', |
| 18 | + 'Operating System :: POSIX', |
| 19 | + 'Operating System :: MacOS :: MacOS X', |
| 20 | + 'Programming Language :: Python', |
| 21 | + 'Programming Language :: Python :: 3', |
| 22 | + 'Programming Language :: Python :: 3.9', |
| 23 | + 'Programming Language :: Python :: 3.10', |
| 24 | + 'Programming Language :: Python :: 3.11', |
| 25 | + 'Programming Language :: Python :: 3.12', |
| 26 | + 'Programming Language :: Python :: 3.13', |
| 27 | + 'Topic :: Communications', |
| 28 | + 'Topic :: Software Development :: Libraries', |
| 29 | + 'Topic :: Software Development :: Libraries :: Python Modules', |
| 30 | + 'Topic :: Terminals :: Serial', |
| 31 | +] |
| 32 | +dependencies = [ |
| 33 | + "pyserial", |
| 34 | +] |
| 35 | +dynamic = ["version"] |
| 36 | + |
| 37 | +[project.urls] |
| 38 | +"Source code" = "https://github.com/home-assistant-libs/pyserial-asyncio-fast" |
| 39 | +"Documentation" = "http://pyserial-asyncio.readthedocs.io" |
| 40 | + |
| 41 | +[tool.setuptools.dynamic] |
| 42 | +version = { attr = "serial_asyncio_fast.__version__" } |
0 commit comments