aitjcize / cppman

C++ 98/11/14 manual pages for Linux/MacOS
GNU General Public License v3.0
1.27k stars 79 forks source link

Add classifiers to setup.py #36

Closed zopieux closed 9 years ago

zopieux commented 9 years ago

Please add the right classifiers to setup.py. I would do it myself and open a PR but I have no idea what is the stability level or the exhaustive list of supported Python versions.

Given the Travis build, I suggest at least the following:

classifiers = (
    'Programming Language :: Python :: 2.6'
    'Programming Language :: Python :: 2.7',
    'Programming Language :: Python :: 2 :: Only',
)

Of course, if it is Python 3 compatible, some other should be added and 2 :: Only be removed.

aitjcize commented 9 years ago

cppman currently does not support python3, but I have plan to port it to python3 eventually. Thanks for the suggestion, can you send a PR to add the classifiers? Thanks a lot!

zopieux commented 9 years ago

Implemented in #37.