Fixes https://github.com/jrfonseca/xdot.py/issues/31
... | ... |
@@ -35,6 +35,26 @@ setup( |
35 | 35 |
py_modules=['xdot'], |
36 | 36 |
entry_points=dict(gui_scripts=['xdot=xdot:main']), |
37 | 37 |
|
38 |
+ # https://pypi.python.org/pypi?%3Aaction=list_classifiers |
|
39 |
+ classifiers=[ |
|
40 |
+ 'Development Status :: 6 - Mature', |
|
41 |
+ |
|
42 |
+ 'Environment :: X11 Applications :: GTK', |
|
43 |
+ |
|
44 |
+ 'Intended Audience :: Information Technology', |
|
45 |
+ |
|
46 |
+ 'Operating System :: OS Independent', |
|
47 |
+ |
|
48 |
+ 'License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)', |
|
49 |
+ |
|
50 |
+ 'Programming Language :: Python :: 3', |
|
51 |
+ 'Programming Language :: Python :: 3.4', |
|
52 |
+ 'Programming Language :: Python :: 3.5', |
|
53 |
+ 'Programming Language :: Python :: 3 :: Only', |
|
54 |
+ |
|
55 |
+ 'Topic :: Multimedia :: Graphics :: Viewers', |
|
56 |
+ ], |
|
57 |
+ |
|
38 | 58 |
# This is true, but pointless, because easy_install PyGTK chokes and dies |
39 | 59 |
#install_requires=['PyGTK', 'pycairo'], |
40 | 60 |
) |