We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9fcee0 commit fc13b4bCopy full SHA for fc13b4b
setup.py
@@ -26,10 +26,13 @@
26
DESCRIPTION = 'qwt is a pure Python implementation of Qwt C++ library, using PyQt and NumPy'
27
LONG_DESCRIPTION = ''
28
KEYWORDS = ''
29
-CLASSIFIERS = [
30
- 'Development Status :: 3 - Alpha',
31
-# 'Development Status :: 5 - Production/Stable',
32
- 'Topic :: Scientific/Engineering']
+CLASSIFIERS = ['Topic :: Scientific/Engineering']
+if 'alpha' in version:
+ CLASSIFIERS += ['Development Status :: 3 - Alpha']
+elif 'beta' in version:
33
+ CLASSIFIERS += ['Development Status :: 4 - Beta']
34
+else:
35
+ CLASSIFIERS += ['Development Status :: 5 - Production/Stable']
36
37
38
def get_package_data(name, extlist):
0 commit comments