From 06956c4c1f1245450d7a0ab732a224f1183acc26 Mon Sep 17 00:00:00 2001 From: "Michal Krenek (Mikos)" Date: Thu, 30 Mar 2017 14:55:15 +0200 Subject: [PATCH] Move classifiers down in setup.py --- setup.py | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/setup.py b/setup.py index 2f77cef..2cac7d7 100755 --- a/setup.py +++ b/setup.py @@ -64,21 +64,6 @@ setup( "pyqtgraph>=0.10.0", "Qt.py", ], - classifiers=[ - "Development Status :: 4 - Beta", - "Environment :: MacOS X", - "Environment :: Win32 (MS Windows)", - "Environment :: X11 Applications :: Qt", - "Intended Audience :: End Users/Desktop", - "Intended Audience :: Science/Research", - "Intended Audience :: Telecommunications Industry", - "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", - "Natural Language :: English", - "Operating System :: OS Independent", - "Programming Language :: Python :: 3", - "Topic :: Communications :: Ham Radio", - "Topic :: Scientific/Engineering :: Visualization", - ], options={ 'build_qt': { 'packages': ['qspectrumanalyzer'], @@ -102,6 +87,21 @@ setup( ], }, }, + classifiers=[ + "Development Status :: 4 - Beta", + "Environment :: MacOS X", + "Environment :: Win32 (MS Windows)", + "Environment :: X11 Applications :: Qt", + "Intended Audience :: End Users/Desktop", + "Intended Audience :: Science/Research", + "Intended Audience :: Telecommunications Industry", + "License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)", + "Natural Language :: English", + "Operating System :: OS Independent", + "Programming Language :: Python :: 3", + "Topic :: Communications :: Ham Radio", + "Topic :: Scientific/Engineering :: Visualization", + ], entry_points=setup_entry_points, cmdclass=setup_cmdclass, )