1[metadata] 2name = pytest-twister-harness 3version = attr: twister_harness.__version__ 4description = Plugin for pytest to run tests which require interaction with real and simulated devices 5long_description = file: README.rst 6python_requires = ~=3.8 7classifiers = 8 Development Status :: 3 - Alpha 9 Intended Audience :: Developers 10 Topic :: Software Development :: Embedded Systems 11 Topic :: Software Development :: Quality Assurance 12 Operating System :: Posix :: Linux 13 Operating System :: Microsoft :: Windows 14 Programming Language :: Python :: 3.8 15 Programming Language :: Python :: 3.9 16 Programming Language :: Python :: 3.10 17 Programming Language :: Python :: 3.11 18 19[options] 20packages = find: 21package_dir = 22 =src 23install_requires = 24 psutil 25 pyserial 26 pytest>=7.0.0 27 28[options.packages.find] 29where = src 30 31[options.entry_points] 32pytest11 = 33 twister_harness = twister_harness.plugin 34