setup.py: Add classifiers.

This commit is contained in:
Florent Kermarrec 2024-01-01 15:31:42 +01:00
parent 982038508e
commit e585d786e9
1 changed files with 10 additions and 0 deletions

View File

@ -23,5 +23,15 @@ setup(
python_requires = "~=3.7",
install_requires = ["litex"],
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",
],
packages = find_packages(exclude=['test*']),
)