/ setup.cfg
setup.cfg
1 # SPDX-FileCopyrightText: 2022 Jeff Epler for Adafruit Industries 2 # 3 # SPDX-License-Identifier: MIT 4 5 [metadata] 6 name = a2woz 7 author = Jeff Epler for Adafruit Industries 8 author_email = jeff@adafruit.com 9 description = Visualize floppy disk flux patterns 10 long_description = file: README.md 11 long_description_content_type = text/markdown 12 url = https://github.com/adafruit/a2woz 13 classifiers = 14 Programming Language :: Python :: 3 15 Programming Language :: Python :: 3.9 16 Programming Language :: Python :: 3.10 17 Programming Language :: Python :: Implementation :: CPython 18 License :: OSI Approved :: MIT License 19 Operating System :: OS Independent 20 21 [options] 22 package_dir = 23 =. 24 packages = 25 a2woz 26 a2woz.loggers 27 a2woz.util 28 python_requires = >=3.9 29 install_requires = 30 31 [options.entry_points] 32 console_scripts = 33 a2woz = a2woz.__main__:main