lebedov / msgpack-numpy

Serialize numpy arrays using msgpack
Other
194 stars 33 forks source link

Add python3 classifier to setup.py #29

Closed pklapperich closed 6 years ago

pklapperich commented 6 years ago

By listing only the "Python" classifier in setup.py, this project is advertising lack of support for Python3 and causes it to show up on projects like py3readiness (which attempts to track the porting effort to Python3 in advance of Python2 EOL).

I think this project is properly classified by:

    'Programming Language :: Python',
    'Programming Language :: Python :: 2.7',
    'Programming Language :: Python :: 3',
    'Programming Language :: Python :: 3.4',
    'Programming Language :: Python :: 3.5',
    'Programming Language :: Python :: 3.6',
    'Programming Language :: Python :: 3.7',
lebedov commented 6 years ago

Good point - done.