From c611699fc8e2b5591f533b147fe033f62339465a Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Wed, 9 Sep 2020 20:22:32 -0700 Subject: [PATCH] add package keywords --- setup.py | 37 +++++++++++++++++++++++++++++++++++-- 1 file changed, 35 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 595c8e9..1d3138b 100644 --- a/setup.py +++ b/setup.py @@ -2,6 +2,7 @@ from setuptools import setup, find_packages + with open('README.md', 'r') as f: long_description = f.read() @@ -41,10 +42,42 @@ setup(name='masque', 'Intended Audience :: Manufacturing', 'Intended Audience :: Science/Research', 'License :: OSI Approved :: GNU Affero General Public License v3', - 'Operating System :: POSIX :: Linux', - 'Operating System :: Microsoft :: Windows', 'Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)', 'Topic :: Scientific/Engineering :: Visualization', ], + keywords=[ + 'layout', + 'design', + 'CAD', + 'EDA', + 'electronics', + 'photonics', + 'IC', + 'mask', + 'pattern', + 'drawing', + 'lithography', + 'litho', + 'geometry', + 'geometric', + 'polygon', + 'curve', + 'ellipse', + 'oas', + 'gds', + 'dxf', + 'svg', + 'OASIS', + 'gdsii', + 'gds2', + 'convert', + 'stream', + 'custom', + 'visualize', + 'vector', + 'freeform', + 'manhattan', + 'angle', + ], )