From 1e5595376ae0ad56bed0464bd5774cfc774220da Mon Sep 17 00:00:00 2001 From: Florent Kermarrec Date: Mon, 1 Jan 2024 15:30:51 +0100 Subject: [PATCH] setup.py: Add classifiers. --- setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/setup.py b/setup.py index 7bddc3b..940c9e1 100755 --- a/setup.py +++ b/setup.py @@ -16,6 +16,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": [ "litesdcard_gen=litesdcard.gen:main",