From a18df94acb70b155f839ae95c145122874aaabc3 Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Mon, 1 Jan 2024 15:31:15 +0100 Subject: [PATCH] setup.py: Add classifiers. --- setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/setup.py b/setup.py index 28a90ba..fbd438c 100755 --- a/setup.py +++ b/setup.py @@ -15,6 +15,16 @@ python_requires = "~=3.7", packages = find_packages(exclude=("test*", "sim*", "doc*", "examples*")), include_package_data = True, + keywords = "HDL ASIC FPGA hardware design", + classifiers = [ + "Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)", + "Environment :: Console", + "Development Status :: 3 - Alpha", + "Intended Audience :: Developers", + "License :: OSI Approved :: BSD License", + "Operating System :: OS Independent", + "Programming Language :: Python", + ], entry_points = { "console_scripts": [ "litespi_gen=litespi.gen:main",