From 68330b4085cf902ea0c2639a2b5ac4c78baf96ce Mon Sep 17 00:00:00 2001 From: Eren Dogan Date: Sun, 5 Mar 2023 20:37:53 -0800 Subject: [PATCH] Add more meta data for PyPI --- setup.py | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 09152d92..b47d7096 100644 --- a/setup.py +++ b/setup.py @@ -73,7 +73,22 @@ setup( author="Matthew Guthaus", author_email="mrg+vlsida@ucsc.edu", keywords=[ "sram", "magic", "gds", "netgen", "ngspice", "netlist" ], - license="BSD-3", + license="BSD 3-Clause", + python_requires=">=3.6", + classifiers=[ + "Development Status :: 5 - Production/Stable", + "Intended Audience :: Developers", + "Intended Audience :: Science/Research", + "License :: OSI Approved :: BSD License", + "Natural Language :: English", + "Operating System :: Unix", + "Programming Language :: Python", + "Programming Language :: Python :: 3", + "Programming Language :: Python :: 3 :: Only", + "Topic :: Scientific/Engineering", + "Topic :: Software Development", + "Topic :: System :: Hardware", + ], packages=packages, package_dir=package_dir, include_package_data=True,