warner / python-ed25519

Python bindings to the Ed25519 public-key signature system
Other
164 stars 38 forks source link

add trove classifiers to setup.py #4

Closed warner closed 10 years ago

warner commented 10 years ago

This would also make it clearer that we don't yet support py3

warner commented 10 years ago

Started in https://github.com/warner/python-ed25519/tree/trove , but it requires switching to setuptools, which I'm always reluctant to do.

warner commented 10 years ago

Note that we now do support py3, so we don't need trove_classifiers to indicate that we don't.

bit commented 10 years ago

using distutils should be fine for this, but trove_classifiers is the wrong argument, it should be just classifiers (https://docs.python.org/2/distutils/setupscript.html)

https://github.com/bit/python-ed25519/compare/warner:master...trove?expand=1

warner commented 10 years ago

Awesome, thanks! I knew there had to be simple fix for that.